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-luban-menu

v1.4.0

Published

A simple luban navigation menu component for Vue.js

Downloads

16

Readme

vue-luban-menu

一个简单的鲁班导航菜单组件,基于Vue.js

安装

npm install vue-luban-menu --save

引入

import Vue from 'vue'
import LubanMenu from 'vue-luban-menu'

Vue.use(LubanMenu)
// or
import LubanMenu from 'vue-luban-menu'
Vue.component(LubanMenu.name, LubanMenu)

使用

<vue-luban-menu 
	:z-index="100" 
	:offset-top="54"
	:apps="apps" 
	:favorites="favorites" 
	@favorite-remove="removeFavorite" 
	@favorite-add="addFavorite"
>
      <div>click me</div>
</vue-luban-menu>

Props

| 名称 | 介绍 | 类型 | 备注 | |-----------|-----------|-----------|-------------| | apps | 应用数据列表,树形结构,直接使用原始接口数据 | Array | 必填 | | favorites | 收藏列表,默认为空数组 | Array | 可选 | | z-index | 菜单的z-index,默认2000 | Number | 可选 | | offset-top | 菜单顶部位置,默认54 | Number | 可选 | | use-default-action | 是否允许收藏添加或移除的默认行为 | Boolean | 可选 |

Events

| 名称 | 介绍 | 回调参数 | |-----------|-----------|-----------| | favorite-remove | 删除收藏时触发的hook,可以在外部维护favorites | 应用项item | | favorite-add | 添加收藏时触发的hook,可以在外部维护favorites | 应用项item | | menu-click | 点击菜单项hook | 应用项item |

apps 应用数据列表demo

[
	{
		id: 1,
		title: '应用开发',
		appInstances: [
			{ id:11, title: '数据质量开发' },
			{ id:12, title: '数据服务开发' },
			{ id:13, title: 'steamSQL' },
			{ id:14, title: '工作流开发' }
		]
	}
]

favorites demo

[
	{
		id: 1,
		menuApplicationId: 11,
		title: '数据服务开发'
	}
]