Vue get/set interface

by Edward Tanguay

HTML

<div id="vue">
  <div v-bind:class="{highlighted: test1highlighted}">
    syntax 1: "apply class if true"
  </div>
</div>

CSS

.highlighted {
  background-color: yellow;
}

JavaScript

new Vue({
	el:'#vue',
  data(){
  	return {
    	test1highlighted: true
    }
  }
})