vue中minxin---小記


定義全局的方法,例如定義過濾器,在很多地方都會用到,就可以定義在minxin中

demo:

數據格式化 保留指定的小數位數

var mixin={

  filters:{

    fixedNum:function(value,point){

      return value.toFixed(point)

     }

  }

};

 

new Vue(

  el:'#app',

  router,

  mixin,

  template:'<App/>',
  components:{App}

);

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM