<div id="app">
  <h1 class="bigFontSize" :class="classObj">標題一</h1>
</div>
.bigFontSize {
  font-size: 30px;
}
.bgColor {
  background-color: red;
}
.FontColor {
  color: #fff;
}
;(function(){
  let vm = new Vue({
    el: '#app',
    data: {
      link: {
        href: 'https://www.google.com/',
        target: '_black',
        content: 'Google'
      },
      classObj: {
        bgColor: true,
        FontColor: true
      }
    }
  })
})()

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

  1. https://cdnjs.cloudflare.com/ajax/libs/vue/2.6.11/vue.min.js