加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
33-绑定计算属性作为动态属性.html 976 Bytes
一键复制 编辑 原始数据 按行查看 历史
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<script src="./js/vue.js"></script>
<script src="https://cdn.bootcdn.net/ajax/libs/vuex/3.2.0/vuex.min.js"></script>
<title>Document</title>
</head>
<body>
<div id="app">
<div :class="classes"></div>
</div>
</body>
<script>
var app = new Vue({
el: "#app",
data: {
isActive: true,
error: null
},
computed: {
classes: function () {
return {
active: this.isActive && !this.error,
"text-fail": this.error && this.error.type === "fail"
}
}
}
})
</script>
<!-- 注意:
1、:class可以与class共存
2、当:class的表达式过长或逻辑复杂时,还可以绑定一个计算属性,
一般当条件多于两个时,都可以使用data或computed
--></html>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化