就是最简单的示例代码
复制代码<template>
<view class="content">
<image class="logo" src="../../static/logo.png" />
<view>
<text class="title">Uni-APP{{title}}</text>
</view>
</view>
</template>
<script lang="ts">
import { Vue, Component } from 'vue-property-decorator';
@Component({})
export default class index extends Vue {
private title: any = "Hello"
onLoad() {
console.log(this.title, '11111');
}
};
</script>
1 个回复
r***@hotmail.com (作者)
问题解决了, 记录一下, 因为tsconfig.json 的配置问题。
复制代码
{ "compilerOptions": { "target": "esnext", // 我原本设置的是es5 所以浏览器里是正常的, 但是app里就有问题, 设置成esnext 就 两端都正常了 } }