1、HbuilderX 2.6.1.20200226 创建一个默认模板的uni-app项目
2、修改pages/index/index.vue为如下(只修改了script里面的代码):
<script lang="ts">
import Vue from 'vue';
import Component from 'vue-class-component';
@Component
export default class Index extends Vue {
title = 'hello';
}
</script>
或者
<script lang="ts">
import {
Component,
Vue,
} from 'vue-property-decorator';
@Component
export default class Index extends Vue {
title = 'hello';
}
</script>
3、运行到夜神模拟器V6.6.0.0018(Android版本号5.1.1)
4、问题:
1)HbuilderX控制台报错:TypeError: _getPrototypeOf(Index).apply is not a function. (In '_getPrototypeOf(Index).apply(this, arguments)', '_getPrototypeOf(Index).apply' is undefined)
2)app页面显示了一个uni-app图标,“hello”文字没有显示出来