8 lines
269 B
TypeScript
8 lines
269 B
TypeScript
import { createApp } from 'vue'
|
|
import ElementPlus from 'element-plus'
|
|
import 'element-plus/dist/index.css'
|
|
import '@/styles/main.css'
|
|
import BrandConvertTab from '@/pages/brand/components/BrandConvertTab.vue'
|
|
|
|
createApp(BrandConvertTab).use(ElementPlus).mount('#app')
|