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

page-stack-vue3

v2.5.6

Published

### 简介: 按照app页面栈的方式,控制路由跳转,打开新页面时保存旧页面的状态,返回时销毁页面,适合移动端H5项目

Downloads

148

Readme

Page Stack for Vue3

Github / Npm

简介:

按照app页面栈的方式,控制路由跳转,打开新页面时保存旧页面的状态,返回时销毁页面,适合移动端H5项目

preview

在线预览

示例代码

Usage:

  1. 安装依赖

    yarn add page-stack-vue3
  2. 在view-router中使用

        
    import PageStack from "page-stack-vue3";
    import { cloneVNode, defineComponent, ref, VNode } from "vue";
    import { RouteLocation, RouterView } from "vue-router";
        
    export default defineComponent({
    setup() {
        const psRef = ref();
        const onPageResume = function () {
            document.title = `第${psRef.value?.getPageSize() || 1}页`;
        };
        const lifeCb = {
            onResume: onPageResume,
        };
        return function () {
            return (
                <RouterView>
                    {function({Component,route}: {Component: VNode;route:RouteLocation}) {
                        return (
                            <PageStack ref="psRef" lifeCycleCallback={lifeCb}>
                                {Component && cloneVNode(Component, { key: route.path })}
                            </PageStack>
                        );
                    }}
                </RouterView>
            );
        };
    },
    });
    
    
  3. Component Options

    {
        //vue router实例
        router: {
            type: Object as PropType<Router>,
            require: false,
        },
        //是否将路由query参数填充到页面组件的props中,router不传则此参数无效
        mergeQueryToProps: {
            type: Boolean,
            default: false,
        },
        //关闭页面切换动画
        disableAnimation: {
            type: Boolean,
            default: false,
        },
    }
        

注意事项

  1. 如果要跟transition一起使用,请将transition作为子组件使用,并配置disableAnimation=true
    <page-stack :disableAnimation="true">
        <transition ...props>
            <component is="xxx"/>
        </transition>
    </page-stack>
  2. 本组件会重写页面组件的key
  3. 本组件内部模仿了keep-alive的实现,所以页面组件的生命周期同keep-alive
  4. 虽然没有hack vue,但是使用了vue的私有api,所以不保证兼容所有的vue3版本,如果你的vue版本用不了这个库,那就是用不了。可以提issues。
  5. 暂不支持作为被嵌套的路由使用,对嵌套路由的支持尚不完全