vect-ui
v0.0.1-alpha-init3
Published
an UI library based on Vue3 + TS
Downloads
3
Maintainers
Readme
安装 Install
use pnpm
pnpm add vect-ui
use npm
npm install vect-ui
use yarn
yarn add vect-ui
快速开始 Quick Start
Introduce the following code into the entry file.
import { createApp } from 'vue'
import App from './App.vue'
import VectUI from 'vect-ui'
import 'vect-ui/dist/theme/index.css'
createApp(App).use(VectUI).mount('#app')
共建指南 Develop Guide:
提交 Commit:
pnpm commit or npm run commit or yarn commit
调试组件 Debug:
根目录运行命令:pnpm run play -> 启动 playground 子包 -> 引入相关组件。