vue3中没有 this 环境变量了
因为 api setup 在 beforecreate 之前执行,所以 this 是 undefined ;
setup 不能是一个 async 函数 ,因为返回值不是 对象了 ,而是 promise ;如果要使用 async 就要配合 suspense 组件使用 ;
卷帝
因为 api setup 在 beforecreate 之前执行,所以 this 是 undefined ;
setup 不能是一个 async 函数 ,因为返回值不是 对象了 ,而是 promise ;如果要使用 async 就要配合 suspense 组件使用 ;