8 lines
261 B
TypeScript
8 lines
261 B
TypeScript
import { createApp } from 'vue'
|
|
import ElementPlus from 'element-plus'
|
|
import 'element-plus/dist/index.css'
|
|
import '@/styles/main.css'
|
|
import ImageVideoPage from '@/pages/image-video/ImageVideoPage.vue'
|
|
|
|
createApp(ImageVideoPage).use(ElementPlus).mount('#app')
|