Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
3.8k views
in Technique[技术] by (71.8m points)

typescript中require.context()批量export

// export { default as Breadcrumb } from './Breadcrumb/index.vue';
// export { default as UserAvatar } from './UserAvatar/index.vue';
// export { default as WindowsButton } from './WindowsButton/index.vue';

const files = require.context('./', true, /index.vue$/);

type modulesType = {
    [key: string]: string;
};
const modules: modulesType = {};

files.keys().forEach(file => {
    const name = (file as any).split('/')[1];
    modules[name] = files(file as any).default;
});

export.modules = modules;

typescript项目中,使用require.context()优化,
import { UserAvatar } from ...可以注册组件,
但是编辑器会报错,找不到UserAvatarexport member
怎么消除这个错误呢?
image


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
等待大神解答

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...