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

vscoding-ui

v1.3.8

Published

vue ui progress button pop

Downloads

18

Readme

vscoding-ui

####安装

npm install vscoding --save 现有模块有:{ button, pop, progress } ####用法1: #####全局引入

import vscoding from 'vscoding'
vue.use(vscoding)

####用法2: #####按需引入

import { button, pop, progress } from 'vscoding'

####button

//type 有primary,success,warning,danger,info默认primary
//szie:mini,smll,large 默认samll
<ui-button type="primary" size="mini" @click="open">按钮</ui-button>

//文字按钮在type中加入text 例如:
<ui-button type="primary text" size="mini" @click="open">按钮</ui-button>

####progress

/*
progress为全局方法
调用方法:
1.组件内部调用 this.$progress.start() this.$progress.finish()
2.全局调用 Vue.prototype.$progress.start() Vue.prototype.$progress.finish() 
应用场景:
1.路由切换是在全局路由钩子函数中 调用start() 
2.然后在组件create中执行finish()---使用混合
*/

####pop

<ui-pop :canshow="canshow" pref="popover" width="400" positon="right">
	<div slot="header">
		头部内容
	</div>
	<div slot="footer">
		底部内容
	</div>
</ui-pop>

<ui-button type="primary text" data-popover="popover" size="mini" @click="canshow = true">打开弹框</ui-button>
/*
使用方式
	1.width:字符串形式数字,不传默认400
	2.pref:必须传 定位绑定者的位置
	3.position:目前只支持left right,不传默认right
	4.通过使用 data-popover属性的值与pref的相同 建立弹窗与点击源的绑定关系
  	5.canshow 默认true 控制是否显示
*/