| | |
| | | /* |
| | | * @Date: 2024-01-05 21:45:19 |
| | | * @LastEditors: Sneed |
| | | * @LastEditTime: 2024-01-05 23:12:32 |
| | | * @LastEditTime: 2024-01-05 23:14:21 |
| | | * @FilePath: /belleson-frontend/Users/mache/Documents/demo/mdc/src/main.js |
| | | */ |
| | | import Vue from 'vue' |
| | |
| | | import App from './App' |
| | | import router from './router' |
| | | import store from './store' |
| | | import {post,get} from '@/utils/ajax' |
| | | import ajax from '@/utils/ajax' |
| | | |
| | | import '@/icons' // icon |
| | | import '@/permission' // permission control |
| | | Vue.use(ElementUI, { locale }) |
| | | Vue.config.productionTip = false |
| | | Vue.$prototype.$post = post |
| | | Vue.$prototype.$get = get |
| | | Vue.$prototype.$http = ajax |
| | | new Vue({ |
| | | el: '#app', |
| | | router, |