1234567891011121314151617181920 |
- 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
- };
|