91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Vue怎么實現組件

發布時間:2021-02-22 10:17:09 來源:億速云 閱讀:170 作者:小新 欄目:web開發

這篇文章主要介紹Vue怎么實現組件,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!

官網上關于組件繼承分為兩大類,全局組件和局部組件。無論哪種方式,最核心的是創建組件,然后根據場景不同注冊組件。

有一點要牢記,“Vue.js 組件其實都是被擴展的 Vue 實例”!

1. 全局組件

// 方式一
var MyComponent = Vue.extend({
  name: 'my-component',
  template: '<div>A custom component!</div>'
});
Vue.component('my-component', MyComponent);

// 方式二
Vue.component('my-component', {
  name: 'my-component',
  template: '<div>A custom component!</div>'
});

// 使用組件
<div id="example">
  <my-component></my-component>
</div>

主要涉及到兩個靜態方法:

  1. Vue.extend:通過擴展Vue實例的方法創建組件

  2. Vue.component:注冊組件

先來看看Vue.extend源碼,解釋參考中文注釋:

Vue.extend = function (extendOptions) {
 extendOptions = extendOptions || {};
 var Super = this;
 var isFirstExtend = Super.cid === 0;
 if (isFirstExtend && extendOptions._Ctor) {
  return extendOptions._Ctor;
 }
 var name = extendOptions.name || Super.options.name;
 // 如果有name屬性,即組件名稱,檢測name拼寫是否合法
 if ('development' !== 'production') {
  if (!/^[a-zA-Z][\w-]*$/.test(name)) {
   warn('Invalid component name: "' + name + '". Component names ' + 'can only contain alphanumeric characaters and the hyphen.');
   name = null;
  }
 }
 // 創建一個VueComponent 構造函數,函數名為‘VueComponent'或者name
 var Sub = createClass(name || 'VueComponent');
 // 構造函數原型繼承Vue.prototype
 Sub.prototype = Object.create(Super.prototype);
 Sub.prototype.constructor = Sub;
 Sub.cid = cid++;
 // 合并Vue.options和extendOptions,作為新構造函數的靜態屬性options  
 Sub.options = mergeOptions(Super.options, extendOptions);
 //'super'靜態屬性指向Vue函數
 Sub['super'] = Super;
 // start-----------------拷貝Vue靜態方法  
 // allow further extension
 Sub.extend = Super.extend;
 // create asset registers, so extended classes
 // can have their private assets too.
 config._assetTypes.forEach(function (type) {
  Sub[type] = Super[type];
 });
 // end-----------------拷貝Vue靜態方法  
 // enable recursive self-lookup
 if (name) {
  Sub.options.components[name] = Sub;
 }
 // cache constructor:緩存該構造函數
 if (isFirstExtend) {
  extendOptions._Ctor = Sub;
 }
 return Sub;
};

可以看到,Vue.extend的關鍵點在于:創建一個構造函數function VueComponent(options) { this._init(options) },通過原型鏈繼承Vue原型上的屬性和方法,再講Vue的靜態函數賦值給該構造函數。

再看看Vue.component源碼,解釋參考中文注釋:

// _assetTypes: ['component', 'directive', 'elementDirective', 'filter', 'transition', 'partial']
config._assetTypes.forEach(function (type) {
 // 靜態方法Vue.component
 Vue[type] = function (id, definition) {
  if (!definition) {
   return this.options[type + 's'][id];
  } else {
   /* istanbul ignore if */
   if ('development' !== 'production') {
    if (type === 'component' && (commonTagRE.test(id) || reservedTagRE.test(id))) {
     warn('Do not use built-in or reserved HTML elements as component ' + 'id: ' + id);
    }
   }
   // 如果第二個參數是簡單對象,則需要通過Vue.extend創建組件構造函數
   if (type === 'component' && isPlainObject(definition)) {
    if (!definition.name) {
     definition.name = id;
    }
    definition = Vue.extend(definition);
   }
   // 將組件函數加入Vue靜態屬性options.components中,也就是,全局注入該組件
   this.options[type + 's'][id] = definition;
   return definition;
  }
 };
});

方法Vue.component的關鍵點是,將組件函數注入到Vue靜態屬性中,這樣可以根據組件名稱找到對應的構造函數,從而創建組件實例。

2. 局部組件

var MyComponent = Vue.extend({
  template: '<div>A custom component!</div>'
});

new Vue({
  el: '#example',
  components: {
    'my-component': MyComponent,
    'other-component': {
      template: '<div>A custom component!</div>'
    }
  }
});

注冊局部組件的特點就是在創建Vue實例的時候,定義components屬性,該屬性是一個簡單對象,key值為組件名稱,value可以是具體的組件函數,或者創建組件必須的options對象。

來看看Vue如何解析components屬性,解釋參考中文注釋:

Vue.prototype._init = function (options) {
  options = options || {};
  ....
  // merge options.
  options = this.$options = mergeOptions(this.constructor.options, options, this);
  ...
};

function mergeOptions(parent, child, vm) {
  //解析components屬性
  guardComponents(child);
  guardProps(child);
  ...
}

function guardComponents(options) {
  if (options.components) {
    // 將對象轉為數組
    var components = options.components = guardArrayAssets(options.components);
    //ids數組包含組件名
    var ids = Object.keys(components);
    var def;
    if ('development' !== 'production') {
      var map = options._componentNameMap = {};
    }
    // 遍歷組件數組
    for (var i = 0, l = ids.length; i < l; i++) {
      var key = ids[i];
      if (commonTagRE.test(key) || reservedTagRE.test(key)) {
        'development' !== 'production' && warn('Do not use built-in or reserved HTML elements as component ' + 'id: ' + key);
        continue;
      }
      // record a all lowercase <-> kebab-case mapping for
      // possible custom element case error warning
      if ('development' !== 'production') {
        map[key.replace(/-/g, '').toLowerCase()] = hyphenate(key);
      }
      def = components[key];
      // 如果是組件定義是簡單對象-對象字面量,那么需要根據該對象創建組件函數
      if (isPlainObject(def)) {
        components[key] = Vue.extend(def);
      }
    }
  }
}

在創建Vue實例過程中,經過guardComponents()函數處理之后,能夠保證該Vue實例中的components屬性,都是由{組件名:組件函數}構成的,這樣在后續使用時,可以直接利用實例內部的組件構建函數創建組件實例。

以上是“Vue怎么實現組件”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

稷山县| 灵武市| 偏关县| 潢川县| 湄潭县| 泸水县| 茂名市| 微山县| 沙河市| 浏阳市| 齐齐哈尔市| 河间市| 沈丘县| 札达县| 东宁县| 郯城县| 昭觉县| 富川| 镇赉县| 达拉特旗| 桃江县| 兴文县| 独山县| 盐津县| 梁平县| 蓬安县| 新乡市| 新宁县| 萍乡市| 白山市| 保定市| 拉孜县| 昌都县| 崇仁县| 西乌珠穆沁旗| 徐州市| 安达市| 通州区| 阿坝县| 辽宁省| 资阳市|