0.0.2 • Published 3 years ago
vue-ydyui v0.0.2
🌈 Features
- 基于 Vue3 框架
- 支持 JSX、TSX 与 Vue 单文件组件
- Jest + Vue3 plugins实现单元测试
- Eslint + Prettier + Husky 语法检查
- 采用 Vite 构建
- Vitepress 文档网站搭建
🔧 Usage
Install
Install with npm
npm install vue-ydyui --saveInstall with yarn
yarn add vue-ydyuiInstall with pnpm
pnpm add vue-ydyuiQuick Start
import { createApp } from 'vue'
import App from './App.vue'
import YdyUI from 'vue-ydyui'
import 'vue-ydyui/style.css'
createApp(App).use(YdyUI).mount('#app')<template>
<y-button>Button</y-button>
</template>