vue-vben-admin/src/components/Authority/index.ts

9 lines
181 B
TypeScript
Raw Normal View History

2020-11-18 22:41:59 +08:00
import type { App } from 'vue';
2020-10-23 23:11:12 +08:00
import Authority from './src/index.vue';
2020-11-18 22:41:59 +08:00
export default (app: App): void => {
app.component(Authority.name, Authority);
};
export { Authority };