首页 > 解决方案 > 如何继承Vue Json

问题描述

json格式

{
  "font_color": "red", 
}

我收到了带有 json 的颜色,我想立即将其应用于 html。

<h2 style="color:{{msg.font_color}}">Test</h2>

标签: vue.js

解决方案


<h2 v-bind:style="{ color: `${msg.font_color}` }">Test</h2>

推荐阅读