国产成人精品久久免费动漫-国产成人精品天堂-国产成人精品区在线观看-国产成人精品日本-a级毛片无码免费真人-a级毛片毛片免费观看久潮喷

您的位置:首頁技術文章
文章詳情頁

詳解vue 組件

瀏覽:118日期:2023-01-14 09:32:42

Vue的兩大核心

1. 數(shù)據(jù)驅動 - 數(shù)據(jù)驅動界面顯示

2. 模塊化 - 復用公共模塊,組件實現(xiàn)模塊化提供基礎

組件基礎

組件渲染過程

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

Vue組件需要編譯,編譯過程可能發(fā)生在

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

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

runtime-only(默認)

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

runtime-compiler

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

啟用runtime-compiler

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

module.exports = { runtimeCompiler: true //默認false}組件定義

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

例子

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

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

2. 單文件組件(推薦)

創(chuàng)建.vue后綴的文件,定義如下

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

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

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

組件注冊

1. 全局注冊

全局注冊是通過Vue.component()注冊

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

優(yōu)點

其他地方可以直接使用 不再需要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>

優(yōu)點

按需加載

缺點

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

適合

非基礎組件組件使用

組件復用

<template> <div id='app'> <img alt='Vue logo' src='http://www.cgvv.com.cn/bcjs/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>

每個組件都會創(chuàng)建一個新實例,組件的data必須是function,因為每個實例維護自己的data數(shù)據(jù)

組件傳參

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>

運行效果

詳解vue 組件

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

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

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

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

運行效果

詳解vue 組件

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

自定義事件

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

<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. 調用者監(jiān)聽自定義事件

<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. 運行效果

詳解vue 組件

以上就是詳解vue 組件的詳細內容,更多關于vue組件的資料請關注好吧啦網其它相關文章!

標簽: Vue
相關文章:
主站蜘蛛池模板: 国产亚洲欧美日韩在线观看一区二区 | 国产精品国产三级国产专播 | 欧美高清另类自拍视频在线看 | 一级女性全黄生活片免费 | 欧美一线免费http | 亚洲综合色视频在线观看 | 美女国产福利视频 | 国产大片在线观看 | 欧美日韩亚洲高清不卡一区二区三区 | 国产高清一区二区三区 | 欧美成年人视频 | a级午夜毛片免费一区二区 a级性生活视频 | 国产成人综合亚洲亚洲欧美 | 久久久久久久久久久福利观看 | 草草影院ccyycom | 日本三级视频在线 | 亚洲人成影院午夜网站 | 亚洲品质自拍视频网站 | 国产99久久久久久免费看 | 一区二区三区欧美视频 | 7m视频精品凹凸在线播放 | 欧美激情第一欧美在线 | 精品国产欧美精品v | 久爱午夜精品免费视频 | 欧美日韩在线视频不卡一区二区三区 | 国产亚洲精彩视频 | 日本 国产 欧美 | 日本久久伊人 | 久久福利青草精品资源 | 亚洲欧美日韩精品久久亚洲区 | 欧美一级在线全免费 | 在线免费成人网 | 国产成人免费午夜性视频 | 91精品国产手机在线版 | 成人性色生活片免费网 | 亚洲欧美成人在线 | 中文字幕 亚洲精品 第1页 | 国产精品hd免费观看 | 亚洲福利精品一区二区三区 | 欧美成人精品高清在线播放 | 精品国产一区二区三区不卡 |