~~~
<div id="app">
<!-- isShow为true则class为one,为false则class为空 -->
<p :title="title" :class="{one:isShow}">hello worlds</p>
</div>
~~~
~~~
new Vue({
el:"#app",
data:{
title:"test",
isShow:true
}
})
~~~