<div id="app">
<div v-bind:style="{ color: activeColor, fontSize: fontSize + 'px' }">Hello</div>
</div>
var vm = new Vue({
el: '#app',
data: {
activeColor: 'red',
fontSize: 30
}
})
This Pen doesn't use any external CSS resources.