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

vue-ant

v0.1.0

Published

Ant Design components built with Vue.js

Downloads

7

Readme

vue-beauty

Beautiful UI components build with vue and ant design

已完成组件

  • Alert 警告提示
  • Badge 徽标数
  • Card 卡片
  • Collapse 折叠面板
  • Switch 开关
  • Rate 评分
  • Notification 通知提醒框
  • Message 全局提示
  • Input 输入框
  • InputNumber 数字输入框
  • Affix 固钉
  • Steps 步骤条
  • Radio 单选框
  • BackTop 回到顶部
  • Modal 模态框
  • Spin 加载中
  • Tag 标签
  • Upload 上传
  • Icon 图标
  • Select 选择器
  • Transfer 穿梭框
  • Tree 树形控件
  • TreeSelect 树选择
  • Pagination 分页
  • QueueAnim 进出场动画
  • Form 表单
  • Popover 气泡卡片
  • Popconfirm 气泡确认框
  • TimePicker 时间选择框
  • Cascader 级联控件
  • Carousel 走马灯
  • Menu 菜单
  • DataTable 数据表格

(持续更新中。。。)

引入

import Vue from 'vue'
import '../components/style/index.less'
import vue_beauty from '../components'

Vue.use(vue_beauty)

// or
import {
  select,
  button
  // ...
} from '../components'

Vue.use(select)
Vue.use(button)

目录结构

参与流程

  • 我们会通过issue的形式发布一系列任务
  • 在任务issue下面回复并认领
  • 根据某个issue,fork并在develop分支下实现
  • 提交pr到develop分支
  • 合并pr,测试并发布到master分支
  • NOTICE:可以加入QQ群548062121讨论

开发步骤

  • ant-design1.11官网拷贝相应的样式到components/style/components下
  • 打开style/components/index.less,导出组件的样式
  • 在components文件夹下开发组件
  • 到components/index.js下导出组件
  • 到src/views下编写组件的使用文档
  • 修改以下文件:src/routers.js、src/views/components.vue添加文档的路由和链接
  • NOTICE:如果你需要增加样式,可以在组件对应的样式目录中增加xxx_vb.less(如button_vb.less),并在index.less中import该样式文件

命名规范

  • 文件,目录均以小写开头,驼峰式(如inputNumber)
  • 组件的import export 均以v开头,驼峰式(如vInputNumber)

感谢

  • 感谢为这个项目做过贡献的所有朋友。
  • 感谢vue和ant design的开发者。
  • 感谢okoalavue-antd