直接把 a 标签放到 el-button 里就好: <el-button> <a href="https://github.com">GitHub</a> </el-button> 可能需要改一下 a 的样式。 .el-button { a, a:hover, a:focus, a:focus-within, a:active, a:visited { color: inherit; } } 👍 3 FuDesign2008 commented Dec 11, 2019 ...
<el-button :key="tag.id" v-for="(tag,index) in tags" type="buttonType(index)" v-if="tag.state==0">{{tag.name}}</el-button> methods: { onSubmit() { console.log('submit!'); }, buttonType(index){ console.log(index) if(index%5==4){ return "primary"; }else if(index%5=...
可以这么写,后面可以直接接上引用,不用调用方法 :type="`${index%5==4?'primary':'' || index...
没找到需要的内容?换个关键词再搜索试试