笔记:3.12课程笔记上传
This commit is contained in:
21
3.12/Vue3Proj/vue-project/src/main.ts
Normal file
21
3.12/Vue3Proj/vue-project/src/main.ts
Normal file
@@ -0,0 +1,21 @@
|
||||
import './assets/main.css'
|
||||
|
||||
import { createApp } from 'vue'
|
||||
import { createPinia } from 'pinia'
|
||||
|
||||
import App from './App.vue'
|
||||
import Com3_1 from './Com3_1.vue'
|
||||
import Com3_3 from './Com3_3.vue'
|
||||
import Com3_4 from './Com3_4.vue'
|
||||
import Com3_5 from './Com3_5.vue'
|
||||
import Com3_7 from './Com3_7.vue'
|
||||
import Com3_8 from './Com3_8.vue'
|
||||
import Com3_9 from './Com3_9.vue'
|
||||
import Com_6 from './Com_6.vue'
|
||||
|
||||
|
||||
const app = createApp(Com3_4)
|
||||
|
||||
app.use(createPinia())
|
||||
|
||||
app.mount('#app')
|
||||
Reference in New Issue
Block a user