(二)実例方法

1461 ワード

このセクションの知識点

  • 主に実例化方法
  • について述べる

    $mountメソッド

  • $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()