0.0.2 • Published 2 years ago

vue-ydyui v0.0.2

Weekly downloads
-
License
MIT
Repository
-
Last release
2 years ago

🌈 Features

  • 基于 Vue3 框架
  • 支持 JSX、TSX 与 Vue 单文件组件
  • Jest + Vue3 plugins实现单元测试
  • Eslint + Prettier + Husky 语法检查
  • 采用 Vite 构建
  • Vitepress 文档网站搭建

🔧 Usage

Install

Install with npm

npm install vue-ydyui --save

Install with yarn

yarn add vue-ydyui

Install with pnpm

pnpm add vue-ydyui

Quick 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>