UNPKG

essential-com

Version:

### 介绍 ---

10 lines (8 loc) 201 B
import { App, Plugin } from 'vue'; import Button from './src/index.vue'; export const ButtonPlugin: Plugin = { install(app: App) { app.component('my-button', Button); }, }; export { Button };