通常,我使用像这样的静态谷歌素材图标。
<i class="material-icons"></i>
但是,我想使用VueJS的计算属性动态更改材质图标。我尝试了以下方法:
<i class="material-icons font-size-36-i">{{ materialIconCode }}</i>
computed: {
materialIconCode: function () {
return ''
}
}
它不起作用,而是在页面上显示&# E E
,但缺少数字。
有什么想法吗?
答案 0 :(得分:2)
https://jsfiddle.net/guanzo/tbm75a06/
mustache语法将数据解释为文本。使用指令v-html="materialIconCode"
设置元素的html。