Skip to content

oOBobbyOo/vue-hbui

Folders and files

NameName
Last commit message
Last commit date

Latest commit

a709450 Â· May 26, 2023

History

33 Commits
Feb 7, 2023
May 26, 2023
Feb 7, 2023
Mar 22, 2023
Mar 1, 2023
Mar 22, 2023
Feb 7, 2023
Mar 23, 2023
Mar 1, 2023
Feb 7, 2023
Feb 8, 2023
Feb 7, 2023
Mar 3, 2023
Mar 27, 2023
Feb 7, 2023
Feb 17, 2023

Repository files navigation

🔧 Usage

First install vue-hbui with npm, yarn or pnpm.

Install with npm

npm install vue-hbui --save

Install with yarn

yarn add vue-hbui

Install with pnpm

pnpm add vue-hbui

Then import HBUI in the main.ts file:

import { createApp } from 'vue'
import App from './App.vue'

// Import Vue HBUI component and style
import HBUI from 'vue-hbui'
import 'vue-hbui/style.css'

createApp(App).use(HBUI).mount('#app')