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

溫馨提示×

溫馨提示×

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

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

vue3?vite異步組件及路由懶加載怎么應用

發布時間:2022-06-30 13:47:32 來源:億速云 閱讀:866 作者:iii 欄目:開發技術

這篇“vue3 vite異步組件及路由懶加載怎么應用”文章的知識點大部分人都不太理解,所以小編給大家總結了以下內容,內容詳細,步驟清晰,具有一定的借鑒價值,希望大家閱讀完這篇文章能有所收獲,下面我們一起來看看這篇“vue3 vite異步組件及路由懶加載怎么應用”文章吧。

一、前言

1-1.三點變化:

  • 異步組件聲明方法的改變:Vue 3.x 新增一個輔助函數defineAsyncComponent,用來顯示聲明異步組件

  • 異步組件高級聲明方法中的 component 選項更名為loader

  • loader綁定的組件加載函數不再接收resolve和reject參數,而且必須返回一個Promise

1-2.引入輔助函數defineAsyncComponent的原因:

現在,在 Vue 3 中,由于函數組件被定義為純函數,異步組件定義需要通過將其包裝在一個新的 defineAsyncComponent helper 中來顯式定義。

二、Vue 2.x與Vue 3.x定義比較

2-1.異步組件/路由定義比較

  • 2-1-1.在 Vue 2.x 中,聲明一個異步組件只需這樣:

const asyncPage = () => import('./views/home.vue')
  • 2-1-2.在 Vue 3.x 中,異步組件的導入需要使用輔助函數defineAsyncComponent來進行顯式聲明。如下:

<template>
  <div>
    <h2>Async Components</h2>
    <p>異步組件測試</p>
    <child />
  </div>
</template>
<script>
import { defineAsyncComponent } from 'vue'
const child = defineAsyncComponent(() => import('@/components/async-component-child.vue'))
export default {
  name: 'async-components',
  components:{
    'child': child
  }
};
</script>

2-2.聲明方式比較

  • 2-2-1.Vue 2.x中異步組件的聲明有更高級的聲明方式。如下:

const asyncPageWithOptions  = {
  component: () => import('./views/home.vue'),
  delay: 200,
  timeout: 3000,
  error: ErrorComponent,
  loading: LoadingComponent
}

所以,下面的異步組件聲明:

const asyncPage = () => import('./views/home.vue')

等價于:

const asyncPageWithOptions  = {
  component: () => import('./views/home.vue')
}
  • 2-2-2.Vue 3.x中也可以這樣聲明異步組件。只是其中的component需要改為loader。如下:

const asyncPageWithOptions  = defineAsyncComponent({
  loader: () => import('./views/home.vue'),
  delay: 200,
  timeout: 3000,
  error: ErrorComponent,
  loading: LoadingComponent
})

2-3.異步組件加載函數返回比較

  • 2-3-1.在Vue 2.x中接收resolve和reject:

// 2.x version
const oldAsyncComponent = (resolve, reject) => {
  /* ... */
}
  • 2-3-2.在Vue 3.x中始終返回Promise:

// 3.x version
const asyncComponent = defineAsyncComponent(
  () => new Promise((resolve, reject) => {
      /* ... */
  })
)

Vue 3.x的異步組件加載函數將不再接收resolve和reject,而且必須始終返回Promise。也就是說,工廠函數接收 resolve 回調的方式定義異步組件在 Vue 3.x 不能使用了。

// 在 Vue 3.x 中不適用
export default {
  components: {
    asyncPage: resolve => require(['@/components/list.vue'], resolve)
  },
}

三、Vue3實踐

提示: 如果是用vite工具來構建項目,在本地開發使用import做路由懶加載,可以正常加載,但是會報警告;打包到生產環境會報錯,頁面不會正常展示,可以使用以下兩種方法來實現。

3-1.路由懶加載實現

  • 3-1-1.defineAsyncComponent方法

// router/index.js
import { defineAsyncComponent } from 'vue'
const _import = (path) => defineAsyncComponent(() => import(`../views/${path}.vue`));
const routes = [
  {
    path: '/async-component',
    name: 'asyncComponent',
    component: _import('home'),
  }
];
  • 3-1-2.import.meta.glob方法

// 1.上面的方法相當于一次性加載了 views 目錄下的所有.vue文件,返回一個對象
const modules = import.meta.glob('../views/*/*.vue');
const modules ={
    "../views/about/index.vue": () => import("./src/views/about/index.vue")
}
// 2.動態導入的時候直接,引用
const router = createRouter({
  history: createWebHistory(),
  routes: [
    // ...
    {
      path: 'xxxx',
      name: 'xxxxx',
      // 原來的方式,這個在開發中可行,但是生產中不行
      // component: () => import(`../views${menu.file}`),
      // 改成下面這樣
      component: modules[`../views${filename}`]
    }
    // ...          
  ],
})

3-2.異步組件實現

<template>
  <div>
    <h2>Async Components</h2>
    <p>異步組件測試</p>
    <child></child>
  </div>
</template>
<script>
import { defineAsyncComponent } from 'vue'
const child = defineAsyncComponent(() => import('@/components/async-component-child.vue'))
export default {
  name: 'async-components',
  components:{
    'child': child
  }
};
</script>

以上就是關于“vue3 vite異步組件及路由懶加載怎么應用”這篇文章的內容,相信大家都有了一定的了解,希望小編分享的內容對大家有幫助,若想了解更多相關的知識內容,請關注億速云行業資訊頻道。

向AI問一下細節

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

AI

慈溪市| 水富县| 栖霞市| 都江堰市| 福贡县| 巴青县| 宜兰市| 宁强县| 布拖县| 荣成市| 赤城县| 两当县| 烟台市| 友谊县| 仁寿县| 兴安盟| 株洲市| 沿河| 长汀县| 沙湾县| 宿州市| 乐昌市| 满城县| 铜陵市| 青海省| 南涧| 云阳县| 清远市| 天全县| 仲巴县| 礼泉县| 丁青县| 西充县| 溆浦县| 东明县| 黄冈市| 安阳市| 丁青县| 汝南县| 南京市| 莎车县|