Vue: Basic
When are they reactive?
HTML
<script src="https://rawgit.com/yyx990803/vue/master/dist/vue.js"></script>
<div id="app">
<p class="cool zcool" :class="'something'">testinggggg</p>
</div>
Babel + JSX
const vm = new Vue({
el: '#app',
});