在Taro vue中监听小程序 onReady 生命周期的方法。 import {eventCenter, getCurrentInstance} from '@tarojs/taro'; export default { mounted(): void { eventCenter.once(getCurrentInstance().router.onReady, () => { console.log('onReady'); }); }, } JavaScriptCopy
Related Issues not found
Please contact @tanabalu to initialize the comment