mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
chore: install @vant/use
This commit is contained in:
parent
38edb83f37
commit
df0a055ce6
@ -55,6 +55,7 @@
|
|||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@babel/runtime": "7.x",
|
"@babel/runtime": "7.x",
|
||||||
"@vant/icons": "1.3.0",
|
"@vant/icons": "1.3.0",
|
||||||
|
"@vant/use": "^0.0.1-alpha.1",
|
||||||
"vue-lazyload": "1.2.3"
|
"vue-lazyload": "1.2.3"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
|
@ -16,8 +16,8 @@ import {
|
|||||||
} from '../utils';
|
} from '../utils';
|
||||||
|
|
||||||
// Composition
|
// Composition
|
||||||
|
import { useToggle } from '@vant/use';
|
||||||
import { useHeight } from '../../composition/use-rect';
|
import { useHeight } from '../../composition/use-rect';
|
||||||
import { useToggle } from '../../composition/use-toggle';
|
|
||||||
import { usePublicApi } from '../../composition/use-public-api';
|
import { usePublicApi } from '../../composition/use-public-api';
|
||||||
|
|
||||||
// Components
|
// Components
|
||||||
|
@ -1,10 +0,0 @@
|
|||||||
import { ref } from 'vue';
|
|
||||||
|
|
||||||
export function useToggle(defaultValue = false) {
|
|
||||||
const state = ref(defaultValue);
|
|
||||||
const setState = (value: boolean) => {
|
|
||||||
state.value = value;
|
|
||||||
};
|
|
||||||
|
|
||||||
return [state, setState];
|
|
||||||
}
|
|
@ -2156,6 +2156,11 @@
|
|||||||
resolved "https://registry.yarnpkg.com/@vant/touch-emulator/-/touch-emulator-1.2.0.tgz#486300b23e57db9ce9231a04e0a0c621c68692d8"
|
resolved "https://registry.yarnpkg.com/@vant/touch-emulator/-/touch-emulator-1.2.0.tgz#486300b23e57db9ce9231a04e0a0c621c68692d8"
|
||||||
integrity sha512-sJ97zU85zOq51qoi7+CpBEcOyH3CitjP1KC7/GQwqaurUJni+EP7/F9n0HMnAh8GXMjgtgDBNJ5z48x+coNKYQ==
|
integrity sha512-sJ97zU85zOq51qoi7+CpBEcOyH3CitjP1KC7/GQwqaurUJni+EP7/F9n0HMnAh8GXMjgtgDBNJ5z48x+coNKYQ==
|
||||||
|
|
||||||
|
"@vant/use@^0.0.1-alpha.1":
|
||||||
|
version "0.0.1-alpha.1"
|
||||||
|
resolved "https://registry.npmjs.org/@vant/use/-/use-0.0.1-alpha.1.tgz#2c8242c86a75be7b9a3965f412c737b249906858"
|
||||||
|
integrity sha512-dtem5ThlklkoP4zs7BuLzwYgC6OxHsUH/Upme3ep426pfuF7nowlZvF/BnOA+v9ki5BHD48sXaeVhaEqtWC7Ig==
|
||||||
|
|
||||||
"@vue/babel-helper-vue-transform-on@^1.0.0-rc.2":
|
"@vue/babel-helper-vue-transform-on@^1.0.0-rc.2":
|
||||||
version "1.0.0-rc.2"
|
version "1.0.0-rc.2"
|
||||||
resolved "https://registry.npmjs.org/@vue/babel-helper-vue-transform-on/-/babel-helper-vue-transform-on-1.0.0-rc.2.tgz#7246341f666e7c6e65b13da420e2ce85714fbbca"
|
resolved "https://registry.npmjs.org/@vue/babel-helper-vue-transform-on/-/babel-helper-vue-transform-on-1.0.0-rc.2.tgz#7246341f666e7c6e65b13da420e2ce85714fbbca"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user