element的 el-switch 标签里怎么写三元表达式?

我想当scope.row.on==='某个值' 的时候el-switch标签里才有disabled属性,该怎么加?

    <el-table-column width="200%" label="状态" class="switchVal">
        <template slot-scope="scope">
          <el-switch
            @change="changeSwitch(scope.$index, scope.row)"
            v-model="scope.row.on"
            disabled
            active-text="启用"
            inactive-text="">            on-color="#00A854"
            on-text="启动"
            on-value="1"
            off-color="#F04134"
            off-text="禁止"
            off-value="0"
            >
          </el-switch>
        </template>
      </el-table-column>


POPMUISE
浏览 1962回答 1
1回答

四季花海

这其实和Element没啥关系,Vue的绑定你的问题,解决方案如下:示例
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Html5