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

vfullscreen

v2.2.7

Published

> w2fe团队vue插件项目 (w2fe-plugin)

Readme

vfullsrceen

w2fe团队vue插件项目 (w2fe-plugin)

1, 大屏可视化项目的组件自适应,默认纵向排版

2, 傻瓜式使用,把设计图的大小填入对应标签即可

3, 根据浏览器窗口大小,自动改变模块大小

4, 支持esc推迟全屏、支持点击头部切换全屏

5, 提供标签: v-fullscreen包裹全局,v-col列表签, v-row横标签, v-chart图表标签

Build Setup

npm install vfullscreen -save

下载完成后,引入插件,vue.use(vfullscreen)一下,即可使用

示例布局代码如下:

<template>
    <v-fullscreen @popStatus="handlePopStatus" title="点击切换全屏">
        <template v-slot:header>
            <upper :height="70"></upper>
        </template>
        <v-row :width="1920" :height="650">
            <v-col :width="420">
                <divice :height="320" :width="420"/>
                <film :height="300" :width="420"/>
            </v-col>
            <v-col :width="1020">
                <divice :height="300" :width="1020"/>
                <film :height="310" :width="1020"/>
            </v-col>
            <v-col :width="420">
                <divice :height="310" :width="420"/>
                <film :height="300" :width="420"/>
            </v-col>
        </v-row>
        <template v-slot:footer>
            <film :height="350" :width="400"/>
            <event :height="350" :width="380"/>
            <film :height="350" :width="1100"/>
        </template>
    </v-fullscreen>
</template>
<script setup>
    import upper from './widget/upper.vue'
    import divice from './widget/divice.vue'
    import film from './widget/film.vue'
    import event from './widget/event.vue'
    const handlePopStatus = (status) => {
        console.log('handlePopStatus--', status)
    }
</script>

更新日志

1,升级vue版本至3.4.14

2,删除v-head、v-foot标签

3,使用provide、inject注入方式,动态修改模块大小

4,添加设置头部标签的title属性

5,添加实时获取大屏窗口的宽高和是否全屏状态

使用建议

1,所有图表模块使用v-chart标签包裹,实现模块自适应;

2,v-col,v-row,v-chart标签,支持设置width、height