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 🙏

© 2024 – Pkg Stats / Ryan Hefner

void-ui

v0.8.4

Published

An robust and high customizable UI toolkit for Vue.js 2.0

Downloads

34

Readme

Void-UI

文档

关键特性

设计语言
在遵循设计规范的情况下,为多 Web App 项目提供一致性设计风格,减少设计人员与开发人员之间的沟通成本。

高内聚的样式
使用CEP.scss作为辅助,书写组件样式,使组件样式高度内聚,保持隔离。

自定义
精心构思的属性和变量使得自定义样式变得更加简单,组件外观契合设计风格,也为二次开发提供更多便利。 对于面向用户的产品,这是个极其重要的特性。

布局
提供多种多样的布局方式,list、card、flow 等各种经典布局,以及强大的 flexbox。 其中核心布局组件 flexbox 的强大超出你的想象,响应式和实现栅格系统更是不在话下。在所有主流浏览器都支持 flex 布局的今天,你几乎可以将其用在任何地方,代替老旧的浮动布局。

类型支持
类型和注释是最好的文档,在使用 TypeScript 和 TSX(TypeScript 版的 JSX)时,代码提示让你获得良好的开发体验。

如何使用

Void-UI 采用源码分发模式,建议使用 @vue/cli 3.X,并在创建项目时选择 ts 以及 scss 特性,以获得完善的 TypeScript 构建支持。

将 Void-UI 添加到你的依赖中。

# 使用 yarn
yarn add void-ui

# 或者使用 npm
npm install void-ui

在项目中引用

main.scss

@import '~void-ui/src/index.scss';

main.js or main.ts

import './main.scss';
import Vue from 'vue';
import VoidUI from 'void-ui';

Vue.use(VoidUI);