Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

// 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


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
3.9k views
Welcome To Ask or Share your Answers For Others

1 Answer

等待大神解答

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...