UNPKG

seehar-design-vue

Version:

Seehar Design Vue - A Vue.js 3 UI library

13 lines (9 loc) 239 B
import { App } from 'vue' import Card from './card' const CardPlugin: { install(Vue: App): void; name: string } = { install(Vue: App) { Vue.component(Card.name, Card) }, name: Card.name } export default CardPlugin