初学vus.js我放一个按钮 <div id = "app"> <el-button type="primary">按钮</el-button> </div>显示出来是这样子然后我用组件包一层,想传一个属性进去 <div id = "app"> <runoob typec="primary">按钮</runoob> </div> Vue.component('runoob', { props: ['typec'], template: '<el-button type = "{{typec}}">按钮</el-button>' })但是没有效果这是为什么啊
1 回答
慕虎7371278
TA贡献1802条经验 获得超4个赞
'<el-button type = "{{typec}}">按钮</el-button>' 这不对
'<el-button :type = typec>按钮</el-button>'
添加回答
举报
0/150
提交
取消