A custom components and hooks Library
- components
- Hooks
# using npm to install
$ npm i hazel-plus
# using pnpm to install
$ pnpm add hazel-plus
- Import the components style
// main.ts
import { createApp } from 'vue'
import 'hazel-plus/dist/style.css'
- Import the components or hooks you need on demand
// hooks
import { useRequest } from 'hazel-plus'
// Components
import { HzDialogConfirm } from 'hazel-plus'
import { HzDropdownSelect } from 'hazel-plus'
import { HzPopupBottom } from 'hazel-plus'
Visit the documentation for more details.