vue脚手架项目引入el-button,按键可以显示出来,但是把鼠标光标放上去就显示不可用是什么原因
把disabled去了。disabled就是不可点击
设置禁用了呗
<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>