Vue属性绑定

Posted chester.chen

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Vue属性绑定相关的知识,希望对你有一定的参考价值。

v-bind:属性动态绑定数据,简写:

v-html:绑定html代码

{{}}:绑定数据,另一种v-text

v-bind:class="{‘red’:isActive}"  :类型绑定

<div v-for="(item,key) in list"></div>:可以获取到key

v-bind:style="{width:blength+\'px\'}"

<template>
  <div id="app">
    <img :src="url" />
    <div v-html="info"></div>
    <div v-text="msg"></div>
    <div :class="{\'red\':isActive}">
      {{msg}}
    </div>
    <ul>
      <li v-for="(item,key) in list" :class="{\'red\':key==0}">
        {{item}}
      </li>
    </ul>
    <div :style="{width:valueA+\'px\'}" :class="{\'redA\':isActive}">
      cys
    </div>
  </div>
</template>

<script>
export default {
  name: "app",
  data() {
    return {
      url:\'https://ss2.baidu.com/6ONYsjip0QIZ8tyhnq/it/u=255179540,3393043407&fm=173&app=25&f=JPEG?w=218&h=146&s=54B315D542097EEC18B9C1770300C072\',
      info:\'<h2>你好</h2>\',
      msg:\'你好\',
      isActive:true,
      list:[\'1\',\'2\',\'3\'],
      valueA:300
    };
  }
};
</script>

<style lang="scss">
.red{
  color: red
}
.redA{
  background: red
}
</style>

 

以上是关于Vue属性绑定的主要内容,如果未能解决你的问题,请参考以下文章

如何初始化片段中的绑定属性以使双向数据绑定工作

Vue属性绑定

vue在for循环中绑定html数据属性

vue属性绑定函数何时执行

VUE底层原理之数据双向绑定

vue数据绑定方式: