vue中element-ui的样式在localhost正常,发布到线上样式异常

框架vue

main.js中

import ElementUI from 'element-ui'
import 'element-ui/lib/theme-chalk/index.css'
import router from './router'
import './assets/common.css'

一定要注意vue和router的位置顺序,common.css是自定义的样式,可以在其中修改element-ui的样式

例如修改table中展开行的样式

.el-table__expanded-cell[class*=cell]{
  padding:0;
}

 

你可能感兴趣的:(element-ui,Vue)