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

溫馨提示×

溫馨提示×

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

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

如何變更vue3中組件的非兼容

發布時間:2021-03-03 17:15:24 來源:億速云 閱讀:210 作者:TREX 欄目:開發技術

這篇文章主要介紹“如何變更vue3中組件的非兼容”,在日常操作中,相信很多人在如何變更vue3中組件的非兼容問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”如何變更vue3中組件的非兼容”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!

函數式組件

functional attribute 在單文件組件 (SFC) <template> 已被移除
{ functional: true } 選項在通過函數創建組件已被移除

// 使用 <dynamic-heading> 組件,負責提供適當的標題 (即:h2,h3,h4,等等),在 2.x 中,這可能是作為單個文件組件編寫的:
// Vue 2 函數式組件示例
export default {
 functional: true,
 props: ['level'],
 render(h, { props, data, children }) {
 return h(`h${props.level}`, data, children)
 }
}

// Vue 2 函數式組件示例使用 <template>
<template functional>
 <component
 :is="`h${props.level}`"
 v-bind="attrs"
 v-on="listeners"
 />
</template>

<script>
export default {
 props: ['level']
}
</script>

現在在 Vue 3 中,所有的函數式組件都是用普通函數創建的,換句話說,不需要定義 { functional: true } 組件選項。
他們將接收兩個參數:props 和 context。context 參數是一個對象,包含組件的 attrs,slots,和 emit property。
此外,現在不是在 render 函數中隱式提供 h,而是全局導入 h。
使用前面提到的 <dynamic-heading> 組件的示例,下面是它現在的樣子。

// vue3.0
import { h } from 'vue'
const DynamicHeading = (props, context) => {
 return h(`h${props.level}`, context.attrs, context.slots)
}
DynamicHeading.props = ['level']
export default DynamicHeading
// vue3.0單文件寫法
<template>
 <component
 v-bind:is="`h${$props.level}`"
 v-bind="$attrs"
 />
</template>

<script>
export default {
 props: ['level']
}
</script>

主要區別在于

functional attribute 在 <template> 中移除
listeners 現在作為 $attrs 的一部分傳遞,可以將其刪除

異步組件的寫法與defineAsyncComponent方法

現在使用defineAsyncComponent助手方法,用于顯示的定義異步組件
component選項重命名為loader
Loader函數本身不再接受resolve和rejuct參數,必須返回一個Promise

// vue2.x
// 以前異步組件是通過將組件定義為返回Promise的函數來創建
const asyncPage = () => import('./NextPage.vue')
// 或者以選項方式創建
const asyncPage = {
 component: () => import('./NextPage.vue'),
 delay: 200,
 timeout: 3000,
 error: ErrorComponent,
 loading: LoadingComponent
}

// vue3.x
在vue3.x中,需要使用defineAsyncComponent來定義
import{ defineAsyncComponent } from 'vue'
import ErrorComponent from './components/ErrorComponent.vue'
import LoadingComponent from './components/LoadingComponent.vue'

// 不帶選項的定義方法
const asyncPage = defineAsyncComponent(() => import('./NextPage.vue'))

// 帶選項的異步組件
constasyncPageWithOptions = defineAsyncCopmonent({
 loader: () => import('./NextPage.vue'),
 delay: 200,
 timeout: 3000,
 errorComponent: ErrorComponent,
 LoadingComponent: LoadingComponent
})

loader函數不再接收resolve和reject參數,且必須始終返回Promise

// vue2.x
const oldAsyncComponent = (resolve, reject) => {}
// vue3.x
const asyncComponent = defineAsyncComponent(() => new Promise((resolve, reject) => {}))

組件事件需要在emits選項中聲明

vue3中現在提供了一個emits選項,類似props選項
此選項可以用于定義組件向其父對象發出的事件

<!-- vue2.x -->
<template>
 <div>
 <p>{{ text }}</p>
 <button v-on:click="$emit('accepted')">OK</button>
 </div>
</template>
<script>
 export default {
 props: ['text']
 }
</script>

<!-- vue3.x -->
<!-- 現在和prop類似,可以用emits來定義組件發出的事件 -->
<!-- 這個選項還接收已給對象,用來向props一樣對傳遞的參數進行驗證 -->
<!-- 強烈建議記錄下每個組件發出的所有emits,因為去掉了.native修飾符,未使用聲明的事件的所有監聽器都將包含在組建的$attr中,默認情況下,該監聽器將綁定到組件的根節點 -->
<template>
 <div>
 <p>{{ text }}</p>
 <button v-on:click="$emit('accepted')">OK</button>
 </div>
</template>
<script>
 export default {
 props: ['text'],
 emits: ['accepted']
 }
</script>

到此,關于“如何變更vue3中組件的非兼容”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!

向AI問一下細節

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

AI

宜宾市| 湘潭县| 双城市| 湘西| 昭苏县| 清涧县| 北辰区| 色达县| 定南县| 台中市| 龙门县| 巴彦淖尔市| 开远市| 瓦房店市| 泰宁县| 盐源县| 乌恰县| 宁河县| 彩票| 通山县| 宁阳县| 禹城市| 汶上县| 汉源县| 清镇市| 东兰县| 开江县| 福州市| 中方县| 东宁县| 银川市| 资源县| 和龙市| 崇义县| 林芝县| 金坛市| 兰州市| 双牌县| 秦安县| 房产| 封丘县|