123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- import Vue from 'vue'
- import 'normalize.css/normalize.css' // A modern alternative to CSS resets
- import ElementUI from 'element-ui'
- import 'element-ui/lib/theme-chalk/index.css'
- // import locale from 'element-ui/lib/locale/lang/en' // lang i18n 英文
- import { DatePicker } from 'ant-design-vue'
- Vue.use(DatePicker)
- import '@/styles/index.scss' // global css
- import App from './App'
- import store from './store'
- import router from './router'
- import '@/icons' // icon
- // import '@/permission' // permission control/
- import htmlToPdf from '@/utils/htmlToPdf'
- Vue.use(htmlToPdf)
- import animated from 'animate.css'
- Vue.use(animated)
- /**
- * If you don't want to use mock-server
- * you want to use MockJs for mock api
- * you can execute: mockXHR()
- *
- * Currently MockJs will be used in the production environment,
- * please remove it before going online! ! !
- */
- import axios from 'axios'
- Vue.prototype.$http = axios
- // set ElementUI lang to EN
- // Vue.use(ElementUI, { locale }) 英文
- Vue.use(ElementUI)
- Vue.config.productionTip = false
- new Vue({
- el: '#app',
- router,
- store,
- render: h => h(App)
- })
|