index.js 294 B

1234567891011121314151617181920
  1. import StarrySky from './StarrySky';
  2. import JtButton from './button'
  3. //按需引入
  4. export {
  5. StarrySky,
  6. JtButton
  7. };
  8. const components = [StarrySky, JtButton];
  9. const install = (App) => {
  10. components.forEach((item) => {
  11. App.component(item.name, item);
  12. });
  13. };
  14. export default {
  15. install
  16. };