(二)実例方法
1461 ワード
このセクションの知識点
$mountメソッド
Title
var hello = Vue.extend({
template:`<p style="color:red;">{{message}}----{{a}}</p>`,
data:function(){
return {
message:" "
}
},
props:["a"]
})
var vm = new hello({propsData:{a:" props"}}).$mount("hello");
$destroy()アンインストール方法
Title
var hello = Vue.extend({
template:`<p style="color:red;">{{message}}----{{a}}</p>`,
data:function(){
return {
message:" "
}
},
props:["a"]
})
var vm = new hello({propsData:{a:" props"}}).$mount("hello");
function destroy(){
vm.$destroy();
}
$forceUpdate()更新方法
vm.$forceUpdate()