~~~
<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
}
})
~~~