@fluxuijs/core
v0.6.0
Published
FluxUI - Modern Vue 3 Component Library
Maintainers
Readme
@fluxuijs/core
现代化、工程化的 Vue 3 UI 组件库
安装
npm install @fluxuijs/core
# or
pnpm add @fluxuijs/core快速开始
全局注册
import { createApp } from 'vue'
import FluxUI from '@fluxuijs/core'
import '@fluxuijs/core/dist/style.css'
import App from './App.vue'
const app = createApp(App)
app.use(FluxUI)
app.mount('#app')按需引入
<script setup lang="ts">
import { Button, Alert } from '@fluxuijs/core'
import '@fluxuijs/core/dist/style.css'
</script>
<template>
<Button>Click me</Button>
<Alert>This is an alert</Alert>
</template>组件列表
- Button 按钮
- Alert 警告提示
- ConfigProvider 配置提供者
开发
# 安装依赖
pnpm install
# 开发模式
pnpm dev
# 构建
pnpm buildLicense
MIT
