| | |
| | | /* |
| | | * @Date: 2024-01-05 21:45:19 |
| | | * @LastEditors: Sneed |
| | | * @LastEditTime: 2024-01-05 23:12:32 |
| | | * @FilePath: /belleson-frontend/Users/mache/Documents/demo/mdc/src/main.js |
| | | */ |
| | | import Vue from 'vue' |
| | | |
| | | import 'normalize.css/normalize.css'// A modern alternative to CSS resets |
| | |
| | | import locale from 'element-ui/lib/locale/lang/zh-CN' // lang i18n |
| | | |
| | | import '@/styles/index.scss' // global css |
| | | |
| | | import '@/assets/rem.js' |
| | | import App from './App' |
| | | import router from './router' |
| | | import store from './store' |
| | | import {post,get} 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 |
| | | new Vue({ |
| | | el: '#app', |
| | | router, |