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 🙏

© 2026 – Pkg Stats / Ryan Hefner

vue-popup-plus

v1.5.2

Published

一个功能强大、灵活易用的 Vue 3 弹窗组件库,让弹窗管理变得简单而优雅。

Readme

Vue Popup Plus 🚀

一个功能强大、灵活易用的 Vue 3 弹窗组件库,让弹窗管理变得简单而优雅。

Vue 3 TypeScript License Version

✨ 特性

  • 🎯 简单易用 - 简洁的 API,快速集成到您的项目中
  • 🔌 可扩展 - 自定义弹窗内容和样式,满足各种场景需求
  • 🎭 动画支持 - 内置多种动画效果,让弹窗展示更生动
  • 📱 响应式设计 - 完美适配各种屏幕尺寸
  • 🧩 TypeScript 支持 - 完整的类型定义,提供良好的开发体验

📦 安装

# 使用 npm
npm install vue-popup-plus

# 使用 yarn
yarn add vue-popup-plus

# 使用 pnpm
pnpm add vue-popup-plus

📚 文档

查看我们的在线文档获取更多详细信息和高级用法。

🚀 快速开始

全局注册

import { createApp } from 'vue'
import { createPopup } from 'vue-popup-plus'
import App from './App.vue'

const app = createApp(App)
const popup = createPopup()

app.use(popup)

app.mount('#app')

基本使用

<template>
	<button @click="showPopup">显示弹窗</button>
</template>

<script setup>
import { usePopup } from 'vue-popup-plus'

const popup = usePopup()

const showPopup = () => {
	popup.render({
		// 组件
		component: () => import('./components/Demo.vue'),
		// 组件属性
		componentProps: {
			// 根据你的组件属性传入
		},
		width: 400,
		maxHeight: 600,
		mask: false,
	})
}
</script>

🤝 贡献

欢迎贡献代码、报告问题或提出新功能建议!请查看贡献指南了解更多信息。

📄 许可证

MIT © Your Name