3 Star 1 Fork 0

hebingshuai/fangdichan

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
main.js 1.24 KB
一键复制 编辑 原始数据 按行查看 历史
hebingshuai 提交于 2021-12-14 08:37 . 语言
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/zh-CN' // lang i18n
import '@/styles/index.scss' // global css
import App from './App'
import store from './store'
import router from './router'
// 引入组件封装的install方法 全局注册组件
import myPlugin from '@/components/index'
Vue.use(myPlugin)
import '@/icons' // icon
import '@/permission' // permission control
import fiximg from '@/directives/fiximg'
Vue.directive('fiximg', fiximg)
/**
* 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()
}
import Vue2Editor from 'vue2-editor'
Vue.use(Vue2Editor)
// set ElementUI lang to EN
Vue.use(ElementUI, { locale })
// 如果想要中文版 element-ui,按如下方式声明
// Vue.use(ElementUI)
Vue.config.productionTip = false
new Vue({
el: '#app',
router,
store,
render: h => h(App)
})
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/hebsh/fangdichan.git
git@gitee.com:hebsh/fangdichan.git
hebsh
fangdichan
fangdichan
master

搜索帮助