<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
}
}
})
})()
This Pen doesn't use any external CSS resources.