简单教程
提交运行
代码编辑器:
<!DOCTYPE html> <meta charset="utf-8"> <title>Vue 2 范例 - 简单教程(www.twle.cn)</title> </head> <style> .class1{ background: #444; color: #eee; } </style> <body> <link href="/static/next/css/tryit.css?v=2017082407" rel="stylesheet"/> <script src="/static/lib/vue.js/2.5.9/vue.min.js"></script> <div id="app"> <label for="r1">修改颜色</label><input type="checkbox" v-model="class1" id="r1"> <br><br> <div v-bind:class="{'class1': class1}"> directiva v-bind:class </div> </div> <footer>简单教程,简单编程<br/>Copyright © 简单教程</footer> <script> new Vue({ el: '#app', data:{ class1: false } }); </script>
运行结果: