亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

Vue高級特性概念原理是什么

發布時間:2023-03-09 14:43:38 來源:億速云 閱讀:129 作者:iii 欄目:開發技術

本篇內容主要講解“Vue高級特性概念原理是什么”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“Vue高級特性概念原理是什么”吧!

1. 自定義v-model

Vue中的自定義v-model指的是在自定義組件中使用v-model語法糖來實現雙向綁定。在Vue中,通過v-model指令可以將表單元素的值與組件實例的數據進行雙向綁定。但是對于自定義組件,如果要實現v-model的雙向綁定,就需要自定義v-model的實現方式。

自定義v-model需要在自定義組件中提供一個value屬性和一個input事件,并在組件模板中使用v-bindvalue屬性(text1)綁定到input元素的value屬性上,并通過v-on監聽input事件,當input事件觸發時將輸入框的值通過$emit方法發送出去。這樣就可以在父組件中使用v-model語法糖來實現自定義組件的雙向綁定了。

下面是一個自定義組件v-model的實例代碼:

<!-- ChildComponent.vue -->
<template>
  <div>
    <input :value="text1" @input="$emit('change1', $event.target.value)">
  </div>
</template>
<script>
  export default {
  	model: {
		prop: 'text1',
		event: 'change1'
	},
    props: {
		text1 : String,
		default(){
			return ''
		}
	},
    // ...
  }
</script>

在父組件中使用該組件,并使用v-model語法糖實現雙向數據綁定:

<!-- ParentComponent.vue -->
<template>
  <div>
    <child-component v-model="message"></child-component>
    <p>Message: {{ message }}</p>
  </div>
</template>
<script>
  import ChildComponent from './ChildComponent.vue';
  export default {
    components: { ChildComponent },
    data() {
      return {
        message: ''
      }
    }
  }
</script>

2. $nextTick

在Vue中,$nextTick是一個實例方法,它用于在DOM更新完成后執行一些操作,例如修改DOM、操作DOM元素等。它的作用是將回調函數延遲到下次DOM更新循環之后執行,從而確保在回調函數執行時,DOM已經被更新了。

$nextTick會將回調函數放入一個隊列中,在下次DOM更新循環時執行該隊列中的所有回調函數。這個過程可以確保在回調函數執行時,DOM已經被更新,因此可以進行一些操作,例如獲取更新后的DOM節點、修改DOM屬性等。

下面是一個使用$nextTick方法,獲取組件data更新后的DOM長度的代碼:

<template>
  <div id="app">
    <ul ref="ul1">
        <li v-for="(item, index) in list" :key="index">
            {{item}}
        </li>
    </ul>
    <button @click="addItem">添加一項</button>
  </div>
</template>
<script>
export default {
  name: 'app',
  data() {
      return {
        list: ['a', 'b', 'c']
      }
  },
  methods: {
    addItem() {
        this.list.push(`${Date.now()}`)
        this.list.push(`${Date.now()}`)
        this.list.push(`${Date.now()}`)
        this.$nextTick(() => {
          // 獲取 DOM 元素
          const ulElem = this.$refs.ul1
          // eslint-disable-next-line
          console.log( ulElem.childNodes.length )
        })
    }
  }
}
</script>

每點擊&rsquo;添加一項&lsquo;按鈕后,會更新List數組,在數組中新添加3個元素,并打印出DOM元素的長度。如果不使用$nextTick方法,那么在第一次點擊后打印的數字為3,然而DOM元素實際長度已經變為6了。下面是使用$nextTick方法的效果圖,在第一次點擊按鈕后,打印的數字就是6。

Vue高級特性概念原理是什么

3. slot 插槽

基本使用

使用插槽的目的是父組件需要向子組件中插入一段內容。

<!-- 父組件 -->
<template>
    <div>
        <p>vue 高級特性</p>
        <hr>
		<!-- slot -->
        <SlotDemo :url="website.url">
            {{website.title}}
        </SlotDemo>
    </div>
</template>
<script>
import SlotDemo from './SlotDemo'
export default {
    components: {
        SlotDemo,
    },
    data() {
        return {
            name: '雙越',
            website: {
                url: 'http://imooc.com/',
                title: 'imooc',
                subTitle: '程序員的夢工廠'
            },
        }
    }
}
</script>
<!-- 子組件 -->
<template>
    <a :href="url" rel="external nofollow"  rel="external nofollow" >
        <slot>
            默認內容,即父組件沒設置內容時,這里顯示
        </slot>
    </a>
</template>
<script>
export default {
    props: ['url'],
    data() {
        return {}
    }
}
</script>

Vue高級特性概念原理是什么

作用域插槽 ScopedSlot

父組件希望使用子組件中的data數據作為插槽中的內容,可以使用作用域插槽。

<!-- 父組件 -->
<template>
    <div>
        <p>vue 高級特性</p>
        <hr>
        <!-- 作用域插槽寫法 -->
        <ScopedSlotDemo :url="website.url">
            <template v-slot="slotProps">
                {{slotProps.slotData.title}}
            </template>
        </ScopedSlotDemo>
    </div>
</template>
<script>
import ScopedSlotDemo from './ScopedSlotDemo'
export default {
    components: {
        ScopedSlotDemo,
    },
    data() {
        return {
            name: '雙越',
            website: {
                url: 'http://imooc.com/',
                title: 'imooc',
                subTitle: '程序員的夢工廠'
            },
        }
    }
}
</script>
<!-- 子組件 -->
<template>
    <a :href="url" rel="external nofollow"  rel="external nofollow" >
        <slot :slotData="website">
            {{website.subTitle}} <!-- 默認值顯示 subTitle ,即父組件不傳內容時 -->
        </slot>
    </a>
</template>
<script>
export default {
    props: ['url'],
    data() {
        return {
            website: {
                url: 'http://wangEditor.com/',
                title: 'wangEditor',
                subTitle: '輕量級富文本編輯器'
            }
        }
    }
}
</script>

Vue高級特性概念原理是什么

具名插槽

Vue中的具名插槽是指可以在一個組件中定義多個插槽,并使用不同的名稱來標識它們的用途。相對于默認插槽,具名插槽可以更靈活地定制組件的樣式和行為。

具名插槽可以在組件內部使用<slot>標簽進行定義,同時可以通過在<slot>標簽上添加name屬性來指定插槽的名稱。如果在組件的使用者中,需要為具名插槽提供自定義的內容,可以使用v-slot指令來綁定具名插槽。

Vue高級特性概念原理是什么

4. Vue 動態組件

Vue動態組件是一種在運行時動態選擇要渲染的組件的技術。它可以根據不同的條件渲染不同的組件,從而使應用程序更加靈活和可擴展。在Vue中,使用特殊的組件元素<component>來實現動態組件。<component>元素有一個is屬性,它可以接受一個組件名或一個組件對象。當is屬性的值發生變化時,<component>元素會銷毀當前組件實例并創建一個新的組件實例。

下面給出一個動態組件的使用場景:

假設我們有兩個組件,一個是LoginForm,一個是SignupForm,它們分別表示登錄和注冊表單。我們希望根據用戶點擊的按鈕來動態選擇展示哪個表單。首先,需要在父組件中定義兩個子組件,并設置一個變量currentForm來控制當前展示的組件,在這個父組件中,我們引入LoginFormSignupForm組件,并使用<component>元素動態渲染它們。這里currentForm變量初始值為空字符串,因此初始時不會渲染任何組件。當用戶點擊"登錄"或“注冊”按鈕時,我們可以通過調用showLoginFormshowSignupForm方法來更新currentForm變量的值,從而動態渲染對應的表單組件。

<!--父組件-->
<template>
  <div>
    <button @click="showLoginForm">登錄</button>
    <button @click="showSignupForm">注冊</button>
    <component :is="currentForm"></component>
  </div>
</template>
<script>
import LoginForm from './LoginForm.vue'
import SignupForm from './SignupForm.vue'
export default {
  components: {
    LoginForm,
    SignupForm
  },
  data() {
    return {
      currentForm: ''
    }
  },
  methods: {
    showLoginForm() {
      this.currentForm = 'LoginForm'
    },
    showSignupForm() {
      this.currentForm = 'SignupForm'
    }
  }
}
</script>

我們需要在子組件中定義具體的表單。假設LoginFormSignupForm組件分別是以下形式:

<!--LoginForm.vue--> 
<template>
  <form>
    <input type="text" placeholder="用戶名">
    <input type="password" placeholder="密碼">
    <button type="submit">登錄</button>
  </form>
</template>
<!--SignupForm.vue--> 
<template>
  <form>
    <input type="text" placeholder="用戶名">
    <input type="password" placeholder="密碼">
    <input type="password" placeholder="確認密碼">
    <button type="submit">注冊</button>
  </form>
</template>

5. Vue 異步組件

異步組件與常規組件的不同之處在于,異步組件只有在需要的時候才會被加載,而不是在應用初始化時就被全部加載。異步組件的應用場景是:當某個組件的體積比較大時,例如Echarts文件,如果應用初始化時就加載,會非常慢,嚴重影響性能。此時可以將該組件設置為異步組件,在需要使用該組件時,再加載該組件。異步組件通過import()函數引入。

以下代碼中的FormDemo組件中包含多個表單,可以通過將其設置為異步組件,在需要的時候再將其加載。

<template>
    <div>
        <p>vue 高級特性:異步組件</p>
        <hr>
        <!-- 異步組件 -->
        <FormDemo v-if="showFormDemo"/>
        <button @click="showFormDemo = true">show form demo</button>
    </div>
</template>
<script>
export default {
    components: {
        FormDemo: () => import('./FormDemo'),   // 使用import函數,引入需要異步渲染的組件
    },
    data() {
        return {},
		showFormDemo: false      // 首先將異步組件的 v-if 屬性值設置為 false
    }
}
</script>

Vue高級特性概念原理是什么

6. 使用 keep-alive 緩存組件

keep-alive是Vue內置的一個組件,可以將其用于需要緩存的動態組件,避免每次重新渲染時都要執行組件的 created()mounted()destoryed()等鉤子函數,從而提高組件的性能。

keep-alive 組件可以包裹動態組件,使其被緩存。被緩存的組件在組件切換時并不會被銷毀,而是被保留在內存中,下次需要渲染時直接從緩存中讀取組件實例,避免了組件的重新創建和重新渲染。

<template>
    <div>
        <button @click="changeState('A')">A</button>
        <button @click="changeState('B')">B</button>
        <button @click="changeState('C')">C</button>
        <keep-alive>
            <KeepAliveStageA v-if="state === 'A'"/>
            <KeepAliveStageB v-if="state === 'B'"/>
            <KeepAliveStageC v-if="state === 'C'"/>
        </keep-alive>
    </div>
</template>
<script>
import KeepAliveStageA from './KeepAliveStateA'
import KeepAliveStageB from './KeepAliveStateB'
import KeepAliveStageC from './KeepAliveStateC'
export default {
    components: {
        KeepAliveStageA,
        KeepAliveStageB,
        KeepAliveStageC
    },
    data() {
        return {
            state: 'A'
        }
    },
    methods: {
        changeState(state) {
            this.state = state
        }
    }
}
</script>
<!--KeepAliveStageA組件-->
<template>
    <p>state A</p>
</template>
<script>
export default {
    mounted() {
        console.log('A mounted')
    },
    destroyed() {
        console.log('A destroyed')
    }
}
</script>
<!--KeepAliveStageB組件-->
<template>
    <p>state B</p>
</template>
<script>
export default {
    mounted() {
        console.log('B mounted')
    },
    destroyed() {
        console.log('B destroyed')
    }
}
</script>
<!--KeepAliveStageC組件-->
<template>
    <p>state C</p>
</template>
<script>
export default {
    mounted() {
        console.log('C mounted')
    },
    destroyed() {
        console.log('C destroyed')
    }
}
</script>

當組件沒有被keep-alive組件包裹時,每次渲染新的組件就會執行當前已渲染組件的destoryed()函數,然后再執行需要渲染組件的mounted()函數,效果如下圖所示:

Vue高級特性概念原理是什么

如果將需要渲染的組件通過keep-alive組件包裹起來,那么當前頁面中已渲染的組件不會執行destoryed()函數,渲染過的組件也不會再次執行mounted()函數,效果如下圖所示:

Vue高級特性概念原理是什么

7. mixin 混入

在Vue中,mixin是一種可重用組件的機制,它可以將一組選項混入到多個Vue組件中。使用mixin,可以將通用的選項抽象出來,然后在需要的組件中混入這些選項,從而實現代碼復用和邏輯共享。

mixin存在一些問題:

  • 變量來源不明確,不利于閱讀

  • 多個mixin可能會造成命名沖突

  • mixin和組件可能會出現多對多的關系,復雜度高

<template>
    <div>
        <p>{{name}} {{major}} {{city}}</p>
        <button @click="showName">顯示姓名</button>
    </div>
</template>
<script>
import myMixin from './mixin'
export default {
    mixins: [myMixin], // 可以添加多個,會自動合并起來
    data() {
        return {
            name: '小明',
            major: 'web 前端'
        }
    },
    methods: {
    },
    mounted() {
        console.log('component mounted', this.name)
    }
}
</script>

混入的文件通常是一個js文件:

// mixin.js
export default {
    data() {
        return {
            city: '北京'
        }
    },
    methods: {
        showName() {
            console.log(this.name)
        }
    },
    mounted() {
        console.log('mixin mounted', this.name)
    }
}

Vue高級特性概念原理是什么

到此,相信大家對“Vue高級特性概念原理是什么”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!

向AI問一下細節

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

vue
AI

芜湖县| 怀集县| 石嘴山市| 齐齐哈尔市| 铜川市| 久治县| 横山县| 玛曲县| 佛山市| 乌兰浩特市| 钟山县| 高安市| 临洮县| 青冈县| 子洲县| 定州市| 赤壁市| 牟定县| 曲阳县| 招远市| 宾川县| 千阳县| 都兰县| 天水市| 道真| 三都| 郁南县| 郯城县| 孟州市| 阜宁县| 成安县| 河北区| 通江县| 廉江市| 徐汇区| 苗栗市| 翁源县| 朔州市| 渝中区| 南召县| 麻阳|