var vm = new Vue({ el: "#app", data: { test: “actived” } })
<div id="app" v-bind:class="[test]"> 测试信息 </div>
.actived { color: red; }