码迷,mamicode.com
首页 > 其他好文 > 详细

为什么vue创建不用class而是用函数

时间:2020-06-12 12:54:46      阅读:147      评论:0      收藏:0      [点我收藏+]

标签:为什么   his   模块   war   option   tor   init   好处   span   

源码中vue入口

function Vue (options) {
    if (!(this instanceof Vue)
    ) {
      warn(‘Vue is a constructor and should be called with the `new` keyword‘);
    }
    this._init(options);
  }
它实际上就是?个? Function 实现的类,我们只能通过new Vue 去实例化它。
Vue 按功能把这些扩展分散到多个模块中去实现,?不是在?个模块?实现所有,这种?式是? Class 难以实现的。这么做的好处是?常?便代码的维护和管理

为什么vue创建不用class而是用函数

标签:为什么   his   模块   war   option   tor   init   好处   span   

原文地址:https://www.cnblogs.com/TTblog5/p/13098541.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!