🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Book a DemoInstallSign in
Socket

@opentiny/vue-hooks

Package Overview
Dependencies
Maintainers
0
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@opentiny/vue-hooks - npm Package Compare versions

Comparing version

to
3.19.0

4

package.json
{
"name": "@opentiny/vue-hooks",
"version": "2.19.0",
"version": "3.19.0",
"description": "",

@@ -12,3 +12,3 @@ "module": "./lib/index.js",

"@floating-ui/dom": "^1.6.9",
"@opentiny/vue-common": "~2.19.0"
"@opentiny/vue-common": "~3.19.0"
},

@@ -15,0 +15,0 @@ "keywords": [],

@@ -0,1 +1,2 @@

import { hooks } from '@opentiny/vue-common';
/** 慢加载的 v-show 的办法, 灵感来自于: https://github.com/antfu/v-lazy-show

@@ -12,3 +13,3 @@ * 适用场景: 存在初始加载时,不需要显示的区域,但又需要用v-show切换显示。 比如 tabs\collapse\dropdown\cascader\carousel等

export declare const useLazyShow: (show: any) => {
lazyShow: any;
lazyShow: hooks.Ref<any>;
};