12 lines
178 B
TypeScript
12 lines
178 B
TypeScript
/**
|
|
* 业务组件导出索引
|
|
*/
|
|
import WechatProfile from "./WechatProfile.vue";
|
|
|
|
export { WechatProfile };
|
|
|
|
// 用于批量注册组件
|
|
export default {
|
|
WechatProfile,
|
|
};
|