zc-fang-ui
v1.2.0
Published
zc-fang-ui - a small Vue 3 component + utilities library
Downloads
16
Readme
zc-fang-ui
Small Vue 3 UI library with components and utilities.
Usage
Install (from registry):
npm i zc-fang-uiUsage in Vue app:
import { createApp } from 'vue'
import App from './App.vue'
import ZcFangUI, { ZcButton, debounce } from 'zc-fang-ui'
import 'zc-fang-ui/style.css'
const app = createApp(App)
app.use(ZcFangUI) // registers all components globally and exposes utilities as app.config.globalProperties.$zc
app.mount('#app')
// or use components/utilities by named import
// app.component('ZcButton', ZcButton)
// console.log(debounce)Publishing
If your npm account or org requires 2FA, create an Automation token with bypass 2FA and use it in CI for publishing.
