1
import type { App } from 'vue';
2
import Authority from './src/index.vue';
3 4 5 6 7 8
export default (app: App): void => { app.component(Authority.name, Authority); }; export { Authority };