forked from lemons/lemons-web
14 lines
291 B
JavaScript
14 lines
291 B
JavaScript
|
|
import { createApp } from 'vue'
|
||
|
|
import './style.css'
|
||
|
|
import App from './App.vue'
|
||
|
|
import axios from 'axios'
|
||
|
|
import ElementPlus from 'element-plus'
|
||
|
|
import 'element-plus/dist/index.css'
|
||
|
|
|
||
|
|
const app=createApp(App)
|
||
|
|
|
||
|
|
app.use(ElementPlus)
|
||
|
|
app.config.globalProperties.$axios=axios
|
||
|
|
|
||
|
|
app.mount('#app')
|