返回 slidev
main.ts
根目录 / packages / client / main.ts
1 /// <reference types="@slidev/types/client" />
2
3 import { createApp } from 'vue'
4 import App from './App.vue'
5 import setupMain from './setup/main'
6
7 async function main() {
8 const app = createApp(App)
9 await setupMain(app)
10 app.mount('#app')
11 }
12
13 main()
14
14 lines TYPESCRIPT