就是最简单的示例代码
<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 的配置问题。