1. 程式人生 > >Vue.js style (內聯樣式)

Vue.js style (內聯樣式)

boot oct div inf 向上 tps fontsize char 分享圖片

demo

<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title>Vue</title>
  <script src="https://cdn.bootcss.com/vue/2.2.2/vue.min.js"></script>
</head>
<body>
<div id="six">
  <div v-bind:style="{ color: activeColor, fontSize: fontSize + ‘px‘ }">努力向上</div>
</div>

<script>
  new Vue({
    el: ‘#six‘,
    data: {
      activeColor: ‘blue‘,
      fontSize: 20

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

  效果:
技術分享圖片

Vue.js style (內聯樣式)