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