2
0
mirror of https://github.com/tenrok/vue-tribute.git synced 2026-05-22 21:24:07 +03:00
Files
Collin Henderson 03dc35436b Initial v2 commit
2022-01-24 09:40:45 -05:00

12 lines
262 B
TypeScript

import type { App, Plugin } from 'vue'
import { VueTribute } from './vue-tribute'
const install = (app: App) => {
app.component(VueTribute.name, VueTribute)
}
VueTribute.install = install
export { VueTribute }
export default VueTribute as unknown as Plugin