作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在 View 中我需要生成以下类:
<div class="comp comp--lock comp--red">Foo</div>
lock
和red
是基于状态的,其中以下颜色值是可能的:
comp--red
、comp--yellow
、comp--blue
以及许多其他可能的颜色到目前为止,我一直在使用计算方法根据数据连接类名:
getCompClassName(){
return `comp ${this.isLock ? 'comp--lock' : ''} comp--${this.color}`
}
查看 Vuejs 文档我看到 v-bind:class
应该以更好的方式解决这个问题,我遇到的问题是如何解决 color
插值,因为我需要声明所有可能的颜色。
data: {
classObject: {
'comp--lock': this.isLock,
'comp--red': this.color === 'red',
'comp--blue': this.color === 'blue',
'comp--yellow': this.color === 'yellow'
}
}
有没有什么方法可以使用 v-bind:class
来解决这个问题,它可以更好地扩展而不必列出所有可能性,或者我应该使用计算方法来插入类名吗?
最佳答案
你能不能只用一个计算器?
computed: {
classObject() {
return {
'comp--lock': this.isLock,
[`comp--${this.color}`]: true
}
}
}
JSfiddle:https://jsfiddle.net/5sknyauz/5/
编辑:您实际上可以在数据中做同样的事情:
data() {
return {
classObject: {
'comp--lock': this.isLock,
[`comp--${this.color}`]: true
}
}
}
关于javascript - Vuejs 类绑定(bind)和类插值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49318142/
我是一名优秀的程序员,十分优秀!