npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

@timedrasil/mio-ui

v0.1.2

Published

A composable UI library for Vue, empowering developers to build their own design systems

Readme

MiO-UI

npm version license github stars

English | 简体中文

一个为Vue打造的、高度可定制且对开发者友好的UI库

MiO-UI 是一个旨在提供极致开发体验的 Vue 3 组件库。它被设计为高度可扩展和可组合的,让开发者不仅能使用高质量的基础组件,还能轻松地在其之上进行二次开发,甚至构建自己的设计系统

✨ 特性

  • 🧩 可组合的组件: 遵循 Vue 3 的组合式思想,组件设计灵活,易于拼装
  • 🎨 深度定制化: 提供灵活的 API 和 CSS 变量,轻松调整样式,满足各种设计需求
  • 🦾 全面拥抱 TypeScript: 使用 TypeScript 编写,提供完整的类型定义
  • ⚡️ 轻量快速: 核心组件库体积小,性能卓越,按需引入无负担
  • 🧑🧑‍💻 开发者友好: 简洁的 API 设计和清晰的文档,让你上手无忧

📦 安装

你可以使用 npmyarnpnpm 来安装 MiO-UI

# NPM
npm install @timedrasil/mio-ui

# Yarn
yarn add @timedrasil/mio-ui

# PNPM
pnpm add @timedrasil/mio-ui

🚀 快速开始

在你的 main.jsmain.ts 文件中全局引入 MiO-UI 和它的样式

// main.js
import { createApp } from 'vue'
import App from './App.vue'

// 1. 引入 MiO-UI 插件和样式
import MioUI from 'mio-ui'
import 'mio-ui/styles.css' // 别忘了引入样式

const app = createApp(App)

// 2. 注册 MiO-UI 插件
app.use(MioUI)

app.mount('#app')

现在你就可以在你的任何组件中直接使用 MiO-UI 的组件了

<template>
  <div style="width:100%; height: 100%;">
      <mio-button style="margin-right: 10PX;">Default</mio-button>
      <mio-button radius="small" style="margin-right: 10PX;">Radius Small</mio-button>
      <mio-button radius="medium" style="margin-right: 10PX;">Radius Medium</mio-button>
      <mio-button radius="large" style="margin-right: 10PX;">Radius Large</mio-button>
      <mio-button :disabled="true" style="margin-right: 10PX;">Disabled</mio-button>
  </div>
</template>

(注意: 上述代码中的<m-button>是一个示例组件名,请替换为你库中实际的组件名)

🤝 贡献

本项目目前不接受外部贡献 (Pull Request)。但是,我们非常欢迎你通过提交 Issues 来报告Bug或提出功能建议,感谢你的关注!

📄 许可证

该项目基于 MIT License 许可证开源


TIMEdrasil 用❤️制作