1.0.2 • Published 7 months ago

hj-ui-vue3-lib v1.0.2

Weekly downloads
-
License
MIT
Repository
github
Last release
7 months ago

HJ-UI

一个基于 Vue 3 的现代化 UI 组件库

特性

  • 🚀 基于 Vue 3 和 TypeScript 开发
  • 📦 开箱即用的高质量组件
  • 🎨 统一的设计风格
  • 📝 详细的文档和示例
  • 💪 完整的 TypeScript 支持

安装

npm install hj-ui-vue3

快速开始

import { createApp } from 'vue'
import HJUI from 'hj-ui-vue3'
import 'hj-ui-vue3/dist/style.css'
import App from './App.vue'

const app = createApp(App)
app.use(HJUI)
app.mount('#app')

按需引入

<template>
  <hj-button type="primary">主要按钮</hj-button>
</template>

<script setup lang="ts">
import { Button } from 'hj-ui-vue3'
</script>

文档

访问我们的在线文档了解更多信息。

开发

# 安装依赖
npm install

# 启动开发服务器
npm run dev

# 构建组件库
npm run build

# 运行测试
npm run test

# 启动文档开发服务器
npm run docs:dev

# 构建文档
npm run docs:build

License

MIT

1.0.2

7 months ago

1.0.1

7 months ago