美文网首页
Vue.js 模板语法笔记二

Vue.js 模板语法笔记二

作者: stlacapy | 来源:发表于2019-08-09 11:50 被阅读0次

    HTML 属性中的值应使用 v-bind 指令。判断 class1 的值,如果为 true 使用 class1 类的样式,否则不使用该类:

    <div id="app">

      <label for="r1">修改颜色</label><input type="checkbox" v-model="use" id="r1">

      <br><br>

      <div v-bind:class="{'class1': use}">

        v-bind:class 指令

      </div>

    </div>

    <script>

    new Vue({

        el: '#app',

      data:{

          use: false

      }

    });

    </script>

    <!DOCTYPE html>

    <html>

    <head>

    <meta charset="utf-8">

    <title>Vue 测试实例 </title>

    </head>

    <style>

    .class1{

      background: #444;

      color: #eee;

    }

    </style>

    <body>

    <script src="https://cdn.staticfile.org/vue/2.2.2/vue.min.js"></script>

    <div id="app">

      <label for="r1">修改颜色</label><input type="checkbox" v-model="use" id="r1">

      <br><br>

      <div v-bind:class="{'class1': use}">

        v-bind:class 指令

      </div>

    </div>

    <script>

    new Vue({

        el: '#app',

      data:{

          use: false

      }

    });

    </script>

    相关文章

      网友评论

          本文标题:Vue.js 模板语法笔记二

          本文链接:https://www.haomeiwen.com/subject/tlcxjctx.html