Uni-App学习:Vue中v-bind用法

v-bind主要用于绑定一个或多个属性值,或者向另一个组件传递props值。
<view v-html="html" :style="sty">
data() {
return {
sty: "background: red;color:#fff"
}
}

主要写法在上面所示
完整写法是v-bind:style="sty"缩写::style="sty"

一般用于绑定标签属性