mirror of
https://github.com/tenrok/vue-tribute.git
synced 2026-05-22 21:24:07 +03:00
12 lines
262 B
TypeScript
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
|