所以我正在尝试做这样的事情:
<div :style="{photo.portrait: 'portraitStyle'}" :key="photo"></div>
portraitStyle
是一个计算属性,用于检查元素属性portrait是true还是false:
portraitStyle () {
return this.portrait ? 'height: ' + (this.rowHeight*2+this.colPadding)+ 'px !important' : '';
},
我不确定这是正确的方法吗?
我的问题也可能是:
如何在计算属性中使用元素作为this
的引用,而不是Vue组件实现?