Vue引用Element-UI时,组件无效果解决方案
问题:Vue在使用Element-UI组件的时候,已经安装好依赖> npm install element-ui在main.js中导入依赖import ElementUI from 'element-ui'并在全局中使用Vue.use(ElementUI)但,即使是这样,在使用element中的组件时,也没有出现预期的效果<el-row>&...
·
问题:
Vue在使用Element-UI组件的时候,已经安装好依赖
> npm install element-ui
在main.js中导入依赖
import ElementUI from 'element-ui'
并在全局中使用
Vue.use(ElementUI)
但,即使是这样,在使用element中的组件时,也没有出现预期的效果
<el-row>
<el-button>默认按钮</el-button>
<el-button type="primary">主要按钮</el-button>
<el-button type="success">成功按钮</el-button>
<el-button type="info">信息按钮</el-button>
<el-button type="warning">警告按钮</el-button>
<el-button type="danger">危险按钮</el-button>
</el-row>
当前效果:
预期效果:
原因:
未添加css样式,element-ui所提供样式
解决方案:
//引入element-ui所提供样式
import ElementUI from 'element-ui'
// element-ui所提供的css样式
import 'element-ui/lib/theme-chalk/index.css'
更多推荐
已为社区贡献5条内容
所有评论(0)