【Vue】組件

来源:https://www.cnblogs.com/WilsonPan/archive/2020/04/23/12763404.html
-Advertisement-
Play Games

Vue的兩大核心 1. 數據驅動 - 數據驅動界面顯示2. 模塊化 - 復用公共模塊,組件實現模塊化提供基礎 組件基礎 組件渲染過程 template > ast(抽象語法樹) > render > VDom(虛擬DOM) > 真實的Dom > 頁面 Vue組件需要編譯,編譯過程可能發生在 打包過程 ...


Vue的兩大核心

1. 數據驅動 - 數據驅動界面顯示
2. 模塊化 - 復用公共模塊,組件實現模塊化提供基礎

 

組件基礎

組件渲染過程

template ---> ast(抽象語法樹) ---> render ---> VDom(虛擬DOM) ---> 真實的Dom ---> 頁面

Vue組件需要編譯,編譯過程可能發生在

  • 打包過程 (使用vue文件編寫)
  • 運行時(將字元串賦值template欄位,掛載到一個元素上並以其 DOM 內部的 HTML 作為模板)

對應的兩種方式 runtime-only vs runtime-compiler

runtime-only(預設)

  • 打包時只包含運行時,因此體積更少
  • 將template在打包的時候,就已經編譯為render函數,因此性能更好

runtime-compiler

  • 打包時需要包含(運行時 + 編譯器),因此體積更大,大概多10Kb
  • 在運行的時候才把template編譯為render函數,因此性能更差

啟用runtime-compiler

vue.config.js(若沒有手動創建一個)

module.exports = {
    runtimeCompiler: true      //預設false
}

 

組件定義

1. 字元串形式定義(不推薦)

例子

const CustomButton = {
  template: "<button>自定義按鈕</button>"
};

這種形式在運行時才把template編譯成render函數,因此需要啟用運行時編譯(runtime-compiler)

 

2. 單文件組件(推薦)

創建.vue尾碼的文件,定義如下

<template>
  <div>
    <button>自定義按鈕</button>
  </div>
</template>

<template> 里只能有一個根節點,即第一層只能有一個節點,不能多個節點平級

這種形式在打包的時就編譯成render函數,因此跟推薦這種方式定義組件

 

組件註冊

1. 全局註冊
全局註冊是通過Vue.component()註冊

import CustomButton from './components/ComponentDemo.vue'
Vue.component('CustomButton', CustomButton)

優點

  • 其他地方可以直接使用
  • 不再需要components指定組件

缺點

  • 全局註冊的組件會全部一起打包,增加app.js體積

適合

  • 基礎組件全局註冊

2. 局部註冊

在需要的地方導入

<template>
  <div id="app">
    <customButton></customButton>
  </div>
</template>
<script>
import CustomButton from "./components/ComponentDemo.vue";

export default {
  name: "App",
  components: { CustomButton }
};
</script>

優點

  • 按需載入

缺點

  • 每次使用必須導入,然後components指定

適合

  • 非基礎組件

 

組件使用

組件復用

<template>
  <div id="app">
    <img alt="Vue logo" src="./assets/logo.png" />
    <customButton></customButton>
    <customButton></customButton>
    <customButton></customButton>
  </div>
</template>

 

customButton 組件

<template>
  <div id="app">
    <button @click="increment">click me {{times}} times</button>
  </div>
</template>
<script>
export default {
  data() {
    return { times: 0 };
  },
  methods: {
    increment() {
      return this.times++;
    }
  }
};
</script>

每個組件都會創建一個新實例,組件的data必須是function,因為每個實例維護自己的data數據

 

組件傳參

1. 通過props屬性

定義一個button,按鈕文本通過props傳入

<template>
  <button> {{buttonText}} </button>
</template>
<script>
export default {
  props: {
    buttonText: String
  }
};
</script>

 

調用者通過attribute傳入

<customButton buttonText="Button 1"></customButton>
<customButton buttonText="Button 2"></customButton>
<customButton buttonText="Button 3"></customButton>

 

運行效果

 

 

 

2. 通過插槽<slot></slot>

組件在需要替換的地方放入插槽<slot></slot>

<template>
  <button style="margin:10px"><slot>Defalt Button</slot></button>
</template>
<script>
export default {
  props: {
    buttonText: String
  }
};
</script>

 

調用者的innerHtml會替換插槽的值,若為空,使用預設的

<customButton></customButton>
<customButton><span style="color:blue">Button 2</span></customButton>
<customButton>Button 3</customButton>

 

運行效果

註意:看到是用自定義組件的innerHtml替換插槽,若插槽只有一個,可以不寫name attribute,若多個插槽需指定插槽name attribute

 

自定義事件

1. 在組件內部調用this.$emit觸發自定義事件

<template>
  <div style="margin:10px">
    <button @click="increment">
      <slot>Defalt Button</slot>
    </button>
    <span>Click me {{times}} times</span>
  </div>
</template>
<script>
export default {
  props: {
    buttonText: String
  },
  data() {
    return { times: 0 };
  },
  methods: {
    increment() {
      this.times++;
        ("increment");
    }
  }
};
</script>

 

2. 調用者監聽自定義事件

<template>
  <div id="app">
    <customButton @increment="handleIncrement"></customButton>
    <customButton @increment="handleIncrement">
      <span style="color:blue">Button 2</span>
    </customButton>
    <customButton @increment="handleIncrement">Button 3</customButton>
    <p>Total click {{totalClicks}} times</p>
  </div>
</template>
<script>
import CustomButton from "./components/ComponentDemo.vue";

export default {
  name: "App",
  components: { CustomButton },
  data() {
    return { totalClicks: 0 };
  },
  methods: {
    handleIncrement() {
      this.totalClicks++;
    }
  }
};
</script>

 

3. 運行效果

轉發請標明出處:https://www.cnblogs.com/WilsonPan/p/12763404.html


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 目錄:andorid jar/庫源碼解析 EventBus: 用於不同Activity,Service等之間傳遞消息(數據)。 A:onCreate定義 EventBus.getDefault().register(this); onDestroy定義 EventBus.getDefault().u ...
  • 前言 本篇作為開篇,會大體上說明,需要解讀源碼的,類庫,或者jar。 序 原本,類庫和jar的系列準備寫到逆向系列課程的,但是那個東西,在寫了兩篇,就沒有後續了,現在也不知道從哪裡開始了, 只能等後期想好了,再開篇單獨寫吧。 目錄: EventBus、Dagger、okhttp、retrofit、b ...
  • 引子 無意間,看到5年前,Android大佬子勰寫的,關於SDK開發方面的文章(SDK那些事(總綱)), 不由得喚起自己開發iOS SDK的回憶;本文簡單總結下自己開發SDK方面的經驗; SDK(Software Development Kit)可以最大程度實現代碼和功能的復用,為業務開發提供一個非 ...
  • 我19年一整年都沒寫過博客,說實話沒寫的欲望,現在找到了動機,因為我發現讓我願意研究的東西,很大一部分因為它有意思,沒什麼興趣的知識,除非工作需要,真的不願意碰。今天介紹的是ViewDragHelper這個工具類。它在你自定義viewGroup時,幫你解決子view拖動、定位、狀態跟蹤。這是官方的解 ...
  • iframe在部分iphone手機上變寬 如下圖: 百度查了很多也試了很多,最後的解決方式如下: 我使用的是VUE html代碼: <!-- 對於iphone中scrolling必須是no,不要擔心一定會滾動的,對於安卓手機scrolling則是auto,否則在安卓移動端不會滾動 --> <ifra ...
  • 求1/1-1/2+1/3-1/4…..1/100的和 // 聲明變數 var a = 1; var sum1 = 0; var sum2 = 0; while(a <= 100){ if(a % 2 == 0){ sum1 =sum1 - (1 / a); }else{ sum2 =sum2 + ( ...
  • 企業信息列表,查看某條記錄時,彈窗頁里要求展示企業的用戶名,而用戶名欄位不在企業表裡。 為此,我們需要修改彈窗頁的渲染方法。 methods: { enterpriseInfo (record) { this.form.resetFields(); let product; if(record.pr ...
  • 通過JavaScript來判斷某一日期是該年的第幾天 // 聲明變數 var y = 2019; var m = 4; var d = 11; var msg = 0; // switch判斷 switch(m){ case 12: msg = msg+30; case 11: msg = msg+ ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...