1.2.4 • Published 2 years ago

saiyan-ui v1.2.4

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

MIT CI codecov

HomePage

https://saiyan-ui.vercel.app/

Saiyan-UI 是什么

一个Mini版的组件库,基于Vite栈。

Features

  • ⚡️ Vue 3, Vite 2, pnpm, ESBuild - born with fastness
  • 🦾 TypeScript, of course
  • 🗂 File based routing
  • ⚙️ Unit Testing with Vitest
  • 😃 Eslint + Prittier
  • 🎨 UnoCSS - the instant on-demand atomic CSS engine
  • 🚘 CI/CD with GithubActions

安装

使用 npm 的方式安装

npm i saiyan-ui

快速上手

在 main.js 写入以下内容

import { createApp } from 'vue'
import './style.css'
import App from './App.vue'
import SaiyanUI from 'saiyan-ui'
import 'saiyan-ui/dist/entry.css'

createApp(App)
  .use(SaiyanUI)
  .mount('#app')

开始使用

在 main.js 写入以下内容

<template>
  <SButton color="blue">主要按钮</SButton>
</template>