Files
simple-todo/frontend/app/src/app.ts
T
2026-05-26 11:54:24 +08:00

19 lines
334 B
TypeScript

import { createApp } from 'vue'
import { createPinia } from 'pinia'
import { createUI } from 'taro-ui-vue3'
import './app.scss'
const App = createApp({
onShow () {
},
// 入口组件不需要实现 render 方法,即使实现了也会被 taro 所覆盖
})
App.use(createPinia())
App.use(createUI())
export default App