UNPKG

ftt-vue-components

Version:

some components for vuetify3/element-plus/... with vue3.

13 lines (10 loc) 189 B
import { App, Plugin } from 'vue'; import Foo from './src/index.vue'; export const FooPlugin: Plugin = { install(app: App) { app.component('g-foo', Foo); }, }; export { Foo, };