14 lines
339 B
TypeScript
14 lines
339 B
TypeScript
|
import { createApp } from 'vue'
|
||
|
import './style.css'
|
||
|
import App from './App.vue'
|
||
|
//导入element-plus插件和样式
|
||
|
import ElementPlus from 'element-plus'
|
||
|
import 'element-plus/dist/index.css'
|
||
|
|
||
|
//获取APP实例
|
||
|
const app = createApp(App)
|
||
|
//使用element-plus插件
|
||
|
app.use(ElementPlus)
|
||
|
//挂载APP实例到#app元素上
|
||
|
app.mount('#app')
|