Blame view

src/components/Authority/index.ts 181 Bytes
vben authored
1
import type { App } from 'vue';
vben authored
2
import Authority from './src/index.vue';
vben authored
3
4
5
6
7
8

export default (app: App): void => {
  app.component(Authority.name, Authority);
};

export { Authority };