做摄像头模组的网站,专业做网站的网站,权威发布意思,dede网站仿站经典工具问题描述在Uni-app平台下进行开发#xff0c;单文件组件 (SFC) 的Script标签中使用TypeScript语法#xff0c;当使用vue-property-decorator库的方式书写TypeScirpt代码时#xff0c;为什么uni-app的单页生命周期函数onLoad,onReady等函数都无法被触发#xff1f;而vue的mo…问题描述在Uni-app平台下进行开发单文件组件 (SFC) 的Script标签中使用TypeScript语法当使用vue-property-decorator库的方式书写TypeScirpt代码时为什么uni-app的单页生命周期函数onLoad,onReady等函数都无法被触发而vue的mounted等函数可以被触发相关代码//不使用vue-property-decorator的ts语句写法mountedonLoad都会被触发import Vue from vue;export default Vue.extend({mounted() {console.log(The page is be mounted)},onLoad() {console.log(The page is on load success)}});//使用vue-property-decorator后只有vue的mounted会被触发onLoad无法被触发import { Vue, Component } from vue-property-decoratorComponentexport default class App extends Vue{mounted() {console.log(The page is be mounted)}onLoad(){console.log(The page is on load success)}}