Files
Aida_Purchaser_Front/src/directives/index.js
李志鹏 8d28482783 初始化
2026-04-20 11:21:21 +08:00

9 lines
284 B
JavaScript

export default {
install(app) {
const directivesList = import.meta.glob('./*.js', { eager: true });
// 遍历指令文件实现自动注册
Object.keys(directivesList).forEach(key => {
app.directive(directivesList[key].default.name, directivesList[key].default);
});
}
};