-
Vue3-Taro3-Demo: 使用Vue3开发的Taro3项目
资源介绍
Taro3-Vue3-Demo
// option Api
data ( ) {
return {
res : [ ] ,
msg : "" ,
} ;
} ,
created ( ) {
this . getRes ( ) ;
} ,
methods : {
getRes : async function ( ) {
this . res = await test ( ) ;
} ,
} ,
setup ( ) {
const res = ref ( [ ] ) ;
const msg = ref ( "" ) ;
const getRes = async ( ) => {
const result = await test ( ) ;