1. 程式人生 > >邊黎安大神 帶你走近vue2.5 新時代

邊黎安大神 帶你走近vue2.5 新時代

vue 的特性 模版語法

html <h1>helloworld</h1>

vue <h1>{{ msg}}</h1>  在底下的 export default 裡面 

name: 'HelloWorld',
props: {
  msg: String
}

或者 data(){

return(

msg: 'ss'

}

下面 寫兩個 類似的寫法 超文字 以及 h5

1.

<h1>{{ msg }}</h1>

2.

<div v-html="msg1">
 </div>
data(){//data 是個方法。看清楚 不能直接當屬性 多例項共享的問題
  return {
    msg1:'<span style="color:red;">Helloworld</span>'
  }
}