whychdw
5 天以前 aa995b8564c6864d5c9f43273c0b303af8f9bd4d
1
2
3
4
5
6
7
8
9
import card from '@/components/card.vue';
import ycCard from '@/components/ycCard/index.vue';
import flexLayout from '@/components/FlexLayout.vue';
 
export function registerGlobalComponents(app) {
  app.component('flexLayout', flexLayout);
  app.component('card', card);
  app.component('ycCard', ycCard);
}