zl程序教程

您现在的位置是:首页 >  前端

当前栏目

Vue.js 样式绑定

VueJS 绑定 样式
2023-09-11 14:22:19 时间

demo 

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>vue js  </title>
  <script src="https://cdn.bootcss.com/vue/2.2.2/vue.min.js"></script>
</head>
<style>
  .one {
    width: 100px;
    height: 100px;
    background: darkblue;
  }
</style>
<body>
    <div id="app">
      <div v-bind:class="{ one: isActive }"></div>
    </div>
<script>
  new Vue({
    el:'#app',
    data:{
      isActive:true

    }
  })
</script>
</body>
</html>

  效果:

 

 

2018-03-20    13:19:31