vue 在使用element-ui时import 'element-ui/lib/theme-chalk/index.css‘时报错,新版本ElementUI

报错信息:in …/node_modules/[email protected]@element-ui/lib/theme-chalk/index.css
原代码:

import Vue from 'vue'
import App from './App.vue'
import router from './router'

//引入element-ui
import ElemeentUI from 'element-ui'
import 'element-ui/lib/theme-chalk/index.css'
Vue.use(ElemeentUI)

//配置路由
import VueRouter from 'vue-router'
Vue.use(VueRouter);

Vue.config.productionTip = false

new Vue({
  render: h => h(App),
	router
}).$mount('#app')

解决方法:网上大部分说修改webpack.base.conf.js文件,如果使用的是新版本的Vue-cli,找不到这个文件,没法修改,可以尝试把上面的

 import 'element-ui/lib/theme-default/index.css'
               改为: 
import 'element-ui/lib/theme-chalk/index.css'

你可能感兴趣的:(Vue学习)