You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
356 B
14 lines
356 B
import { createApp } from 'vue'
|
|
import ElementPlus from 'element-plus'
|
|
import 'element-plus/dist/index.css'
|
|
import Antd from 'ant-design-vue';
|
|
import 'ant-design-vue/dist/antd.css';
|
|
import App from './App.vue'
|
|
import axios from 'axios'
|
|
|
|
const app = createApp(App)
|
|
app.config.globalProperties.$http = axios
|
|
|
|
app.use(ElementPlus).use(Antd)
|
|
app.mount('#app')
|