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

9 lines
181 B
TypeScript

import type { App } from 'vue';
import Authority from './src/index.vue';
export default (app: App): void => {
app.component(Authority.name, Authority);
};
export { Authority };