import {
createSSRApp
} from 'vue'
const myMixin = {
data() {
return {
message: 'hello',
foo: 'abc'
}
}
}
export function createApp() {
const app = createSSRApp(App)
app.use(store)
app.mixin(xmixin);
return {
app
}
}

文西527
- 发布:2021-09-12 13:07
- 更新:2021-09-12 13:07
- 阅读:592
0 个回复