(二十五) 按需加载组件

2023-02-22 16:46:44 浏览数 (1)

按需加载组件代码,减少文件体积

说明

当我们使用普通的引入组件的方式的时候,是页面第一次加载就把所有的源文件都加载出来了,这样当项目大的时候,首次加载会变得非常的缓慢,影响用户体验,为了解决这个问题,vue 使用了 es6 语法的异步加载

代码语言:javascript复制
// 正常导入组件
import ProductPage from "./components/ProductPage.vue"

// 使用异步加载
import { defineAsyncComponent } from "vue"
// 使用异步加载需要引入vue的defineAsyncComponent
const ProductPage = defineAsyncComponent(() =>
  import("./components/ProductPage.vue")
)

export default {
  components: {
    ProductPage,
  },
  data() {
    return {};
  },
}

0 人点赞