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

wpy-popup

v1.0.5

Published

wepy 框架下的小程序弹窗组件

Downloads

5

Readme

Popup 组件的使用

说明:npm 版本需要 6.1 以上

一、安装

npm install my-wpy-pop --save

二、引用

import Popup from 'my-wpy-pop';

三、声明组件

// 声明组件,分配组件id
components = {
    Popup: Popup
}

四、页面使用

将弹窗中的内容放到<Popup></Popup>标签中即可,Popup 需要传入 isShow,当 isShow 为 false 时不显示,反之显示

<Popup :isShow.sync="isShow">
    <view style="background-color: #fff; width: 500rpx; height: 500rpx;">
        test content
    </view>
</Popup>

五、js 获取点击事件

如需获取用户点击蒙层部分事件(有时需要支持用户点击蒙层部分弹窗消失)。则需要在调用时添加@hide.user="方法名",然后在 js 的 method 方法中定义该方法即可

<Popup :isShow.sync="isShow" @hide.user="hidePop">
    <view style="background-color: #fff; width: 500rpx; height: 500rpx;">
        test content
    </view>
</Popup>
// js
method = {
    hidePop() {
        // 用户点击蒙层,此方法将被触发
    }
}

六、完整使用示例如下

<template>
    <view>
        <Popup :isShow.sync="isShow" @hide.user="hidePop">
            <view style="background-color: #fff; width: 500rpx; height: 500rpx;">
                test content
            </view>
        </Popup>
    </view>
</template>

<script>
    import wepy from 'wepy';
    // js 中引入组件文件
    import Popup from 'my-wpy-pop';

    export default class Index extends wepy.component {
        // 声明组件,分配组件id
        components = {
            Popup: Popup
        }

        method = {
            hidePop() {
                // 用户点击蒙层,此方法将被触发
            }
        }
    }
</script>