Skip to content
On this page

Meow-UI是什么?

Meow-UI 是一个基于 ViteTypeScript 的定制化个人UI,目标是为开发提供开箱即用的高质量组件。

文档

  • 文档地址为 MeowUI-doc,采用 Vitepress 开发。如发现文档有误,欢迎提 pr 帮助我们改进。
  • 英文文档暂时没有时间来写,欢迎有时间的同学来帮忙写英文文档。

本地运行文档

如需本地运行文档,请拉取代码到本地。

bash
# 拉取代码
git clone https://github.com/catwatermelon/meow-ui.git
# 安装依赖
pnpm install
# 运行项目
pnpm docs:dev

特性

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

安装

bash
pnpm i meow-ui

快速开始

js
import Vue from 'vue'
import MeowUI from 'meow-ui'

const App = {
    template: `
        <MButton/>
    `,
};

createApp(App)
    .use(MeowUI)
    .mount("#app");

vite 插件推荐

如果这些插件对你有帮助,可以给一个 star 支持下

浏览器支持

本地开发推荐使用Chrome 最新版浏览器,不支持Chrome 80以下版本。

生产环境支持现代浏览器,不支持 IE。

IEIE EdgeEdgeFirefoxFirefoxChromeChromeSafariSafari
not supportlast 2 versionslast 2 versionslast 2 versionslast 2 versions

Released under the MIT License.