bee-plus
v1.0.5
Published
Vue 3 component library for bee-plus
Downloads
537
Readme
Bee Plus
A Vue 3 Component Library.
🔗 GitHub Repository: https://github.com/beekim123/bee-plus/tree/main
Installation
npm install bee-plus
# or
pnpm add bee-plus
# or
yarn add bee-plusUsage
Global Registration
In your main.ts or main.js:
import { createApp } from 'vue'
import App from './App.vue'
// Import Bee-Plus and its styles
import BeePlus from 'bee-plus'
import 'bee-plus/dist/index.css'
const app = createApp(App)
app.use(BeePlus)
app.mount('#app')Import Components Manually
import { BeeButton } from 'bee-plus'
import 'bee-plus/dist/index.css'