2025-01-16 19:52:00 +08:00
|
|
|
import Vue from 'vue'
|
|
|
|
|
|
|
|
|
|
import Cookies from 'js-cookie'
|
|
|
|
|
|
|
|
|
|
import 'normalize.css/normalize.css' // a modern alternative to CSS resets
|
|
|
|
|
|
|
|
|
|
import Element from 'element-ui'
|
|
|
|
|
import './styles/element-variables.scss'
|
|
|
|
|
// import enLang from 'element-ui/lib/locale/lang/en'// 如果使用中文语言包请默认支持,无需额外引入,请删除该依赖
|
|
|
|
|
|
|
|
|
|
import '@/styles/index.scss' // global css
|
|
|
|
|
import '@/styles/ruoyi.scss' // ruoyi css
|
|
|
|
|
|
|
|
|
|
import App from './App'
|
|
|
|
|
import store from './store'
|
|
|
|
|
import router from './router'
|
|
|
|
|
|
|
|
|
|
import throttle from '@/directive/throttle'
|
|
|
|
|
|
|
|
|
|
import './icons' // icon
|
|
|
|
|
import './permission' // permission control
|
|
|
|
|
import './utils/error-log' // error log
|
|
|
|
|
|
|
|
|
|
import * as filters from './filters' // global filters
|
|
|
|
|
import qs from 'qs'
|
|
|
|
|
|
2025-10-16 13:43:48 +08:00
|
|
|
import Pagination from '@/components/Pagination'
|
|
|
|
|
|
2025-01-16 19:52:00 +08:00
|
|
|
/**
|
|
|
|
|
* 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 ! ! !
|
|
|
|
|
*/
|
|
|
|
|
// if (process.env.NODE_ENV === 'production') {
|
|
|
|
|
// const { mockXHR } = require('../mock')
|
|
|
|
|
// mockXHR()
|
|
|
|
|
// }
|
|
|
|
|
|
|
|
|
|
Vue.use(Element, {
|
2025-10-16 13:43:48 +08:00
|
|
|
size: Cookies.get('size') || 'medium', // set element-ui default size
|
|
|
|
|
// locale: enLang // 如果使用中文,无需设置,请删除
|
2025-01-16 19:52:00 +08:00
|
|
|
})
|
|
|
|
|
|
|
|
|
|
Vue.use(throttle)
|
|
|
|
|
|
2025-10-16 13:43:48 +08:00
|
|
|
Vue.component('pagination', Pagination)
|
2025-01-16 19:52:00 +08:00
|
|
|
// register global utility filters
|
2025-10-16 13:43:48 +08:00
|
|
|
Object.keys(filters).forEach((key) => {
|
|
|
|
|
Vue.filter(key, filters[key])
|
2025-01-16 19:52:00 +08:00
|
|
|
})
|
|
|
|
|
|
|
|
|
|
Vue.config.productionTip = false
|
|
|
|
|
Vue.prototype.$qs = qs
|
|
|
|
|
new Vue({
|
2025-10-16 13:43:48 +08:00
|
|
|
el: '#app',
|
|
|
|
|
router,
|
|
|
|
|
store,
|
|
|
|
|
render: (h) => h(App),
|
2025-01-16 19:52:00 +08:00
|
|
|
})
|