如何在vue行内使用三元表达式
格式:<:style="{'属性名':三元表达式}"><el-button :style="{'color':status === true ? '#FF5757':'#757575'}">按钮</el-button><div id="containes" style="width:100%; height:100%" :class...
·
格式:<:style="{'属性名':三元表达式}">
<el-button :style="{'color':status === true ? '#FF5757':'#757575'}">按钮</el-button>
<div id="containes" style="width:100%; height:100%" :class="[cursor ? 'cursorCrosshair' : 'cursorPointer']" />
.cursorCrosshair {
cursor : crosshair !important;
}
.cursorPointer {
cursor : pointer !important;
}
更多推荐
已为社区贡献4条内容
所有评论(0)