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')