This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
<template>
<view style="background-color: #fff;">
<view style="border-bottom: 1px solid grey;padding: 15rpx;margin-bottom: 20rpx;">{{title}}</view>
<view>
具体解决办法:
</view>
</template>
<script>
export default {
onLoad(option) {
console.log(option.item);
this.title = option.item
},
data() {
return {
title: ""
};
}
</script>
<style lang="scss">
page {}
</style>