import StarrySky from './StarrySky'; import JtButton from './button' //按需引入 export { StarrySky, JtButton }; const components = [StarrySky, JtButton]; const install = (App) => { components.forEach((item) => { App.component(item.name, item); }); }; export default { install };