1.0.0-alpha.0 • Published 4 years ago

@handyu/vue5 v1.0.0-alpha.0

Weekly downloads
-
License
ISC
Repository
github
Last release
4 years ago

vue3 UI 组件框架

使用 npm 或 yarn 安装(推荐)

# npm
npm install @handyui/vue --save

# yarn
yarn add @handyui/vue --save

Import 引入

全组件引入

import Vue from 'vue';
import handyVue from '@handyui/vue';
// 引入全局样式
import '@handyui/vue/handy-vue.default.css';
Vue.use(handyVue);

按需引入

import { Button, Alert } from '@handyui/vue'
Vue.use(Button)
Vue.use(Alert)