目的: 自動的批量注冊組件县恕。
大致步驟:
- 使用
require
提供的函數(shù)context
加載某一個目錄下的所有.vue
后綴的文件东羹。 - 然后
context
函數(shù)會返回一個導入函數(shù)importFn
- 它又一個屬性
keys()
獲取所有的文件路徑
- 它又一個屬性
- 通過文件路徑數(shù)組,通過遍歷數(shù)組忠烛,再使用
importFn
根據(jù)路徑導入組件對象 - 遍歷的同時進行全局注冊即可
落的代碼:
src/components/library/index.js
// 其實就是vue插件属提,擴展vue功能,全局組件美尸、指令冤议、函數(shù) (vue.30取消過濾器)
// 當你在mian.js導入,使用Vue.use() (vue3.0 app)的時候就會執(zhí)行install函數(shù)
// import XtxSkeleton from './xtx-skeleton.vue'
// import XtxCarousel from './xtx-carousel.vue'
// import XtxMore from './xtx-more.vue'
// import XtxBread from './xtx-bread.vue'
// import XtxBreadItem from './xtx-bread-item.vue'
// 導入library文件夾下的所有組件
// 批量導入需要使用一個函數(shù) require.context(dir,deep,matching)
// 參數(shù):1\. 目錄 2\. 是否加載子目錄 3\. 加載的正則匹配
const importFn = require.context('./', false, /\.vue$/)
// console.dir(importFn.keys()) 文件名稱數(shù)組
export default {
install (app) {
// app.component(XtxSkeleton.name, XtxSkeleton)
// app.component(XtxCarousel.name, XtxCarousel)
// app.component(XtxMore.name, XtxMore)
// app.component(XtxBread.name, XtxBread)
// app.component(XtxBreadItem.name, XtxBreadItem)
// 批量注冊全局組件
importFn.keys().forEach(key => {
// 導入組件
const component = importFn(key).default
// 注冊組件
app.component(component.name, component)
})
// 定義指令
defineDirective(app)
}
}
const defineDirective = (app) => {
// 圖片懶加載指令 v-lazyload
app.directive('lazyload', {
// vue2.0 inserted函數(shù)师坎,元素渲染后
// vue3.0 mounted函數(shù)恕酸,元素渲染后
mounted (el, binding) {
// 元素插入后才能獲取到dom元素,才能使用 intersectionobserve進行監(jiān)聽進入可視區(qū)
// el 是圖片元素 binding.value 圖片地址
const observe = new IntersectionObserver(([{ isIntersecting }]) => {
if (isIntersecting) {
el.src = binding.value
// 取消觀察
observe.unobserve(el)
}
}, {
threshold: 0.01
})
// 進行觀察
observe.observe(el)
}
})
}
總結胯陋,知識點:
- require.context() 是webpack提供的一個自動導入的API
- 參數(shù)1:加載的文件目錄
- 參數(shù)2:是否加載子目錄
- 參數(shù)3:正則蕊温,匹配文件
- 返回值:導入函數(shù) fn
- keys() 獲取讀取到的所有文件列表