mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
chore(@vant/use): remove @babel/runtime
This commit is contained in:
parent
6e24ba42a2
commit
7bfceb508e
@ -24,9 +24,6 @@
|
|||||||
},
|
},
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"repository": "https://github.com/youzan/vant/tree/dev/packages/vant-use",
|
"repository": "https://github.com/youzan/vant/tree/dev/packages/vant-use",
|
||||||
"dependencies": {
|
|
||||||
"@babel/runtime": "7.x"
|
|
||||||
},
|
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@babel/core": "^7.12.9",
|
"@babel/core": "^7.12.9",
|
||||||
"gh-pages": "^3.1.0",
|
"gh-pages": "^3.1.0",
|
||||||
|
@ -78,13 +78,18 @@ export function useChildren<
|
|||||||
internalChildren.splice(index, 1);
|
internalChildren.splice(index, 1);
|
||||||
};
|
};
|
||||||
|
|
||||||
provide(key, {
|
provide(
|
||||||
link,
|
key,
|
||||||
unlink,
|
Object.assign(
|
||||||
children: publicChildren,
|
{
|
||||||
internalChildren,
|
link,
|
||||||
...value,
|
unlink,
|
||||||
});
|
children: publicChildren,
|
||||||
|
internalChildren,
|
||||||
|
},
|
||||||
|
value
|
||||||
|
)
|
||||||
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
return {
|
return {
|
||||||
|
@ -20,7 +20,7 @@ export function useParent<T>(key: string | symbol) {
|
|||||||
|
|
||||||
if (parent) {
|
if (parent) {
|
||||||
const instance = getCurrentInstance()!;
|
const instance = getCurrentInstance()!;
|
||||||
const { link, unlink, internalChildren, ...rest } = parent;
|
const { link, unlink, internalChildren } = parent;
|
||||||
|
|
||||||
link(instance);
|
link(instance);
|
||||||
onUnmounted(() => unlink(instance));
|
onUnmounted(() => unlink(instance));
|
||||||
@ -28,7 +28,7 @@ export function useParent<T>(key: string | symbol) {
|
|||||||
const index = computed(() => internalChildren.indexOf(instance));
|
const index = computed(() => internalChildren.indexOf(instance));
|
||||||
|
|
||||||
return {
|
return {
|
||||||
parent: rest,
|
parent,
|
||||||
index,
|
index,
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -911,13 +911,6 @@
|
|||||||
"@babel/types" "^7.4.4"
|
"@babel/types" "^7.4.4"
|
||||||
esutils "^2.0.2"
|
esutils "^2.0.2"
|
||||||
|
|
||||||
"@babel/runtime@7.x":
|
|
||||||
version "7.12.5"
|
|
||||||
resolved "https://registry.npm.taobao.org/@babel/runtime/download/@babel/runtime-7.12.5.tgz?cache=0&sync_timestamp=1604441208794&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fruntime%2Fdownload%2F%40babel%2Fruntime-7.12.5.tgz#410e7e487441e1b360c29be715d870d9b985882e"
|
|
||||||
integrity sha1-QQ5+SHRB4bNgwpvnFdhw2bmFiC4=
|
|
||||||
dependencies:
|
|
||||||
regenerator-runtime "^0.13.4"
|
|
||||||
|
|
||||||
"@babel/runtime@^7.11.0", "@babel/runtime@^7.8.4":
|
"@babel/runtime@^7.11.0", "@babel/runtime@^7.8.4":
|
||||||
version "7.11.2"
|
version "7.11.2"
|
||||||
resolved "https://registry.npm.taobao.org/@babel/runtime/download/@babel/runtime-7.11.2.tgz?cache=0&sync_timestamp=1596637803941&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fruntime%2Fdownload%2F%40babel%2Fruntime-7.11.2.tgz#f549c13c754cc40b87644b9fa9f09a6a95fe0736"
|
resolved "https://registry.npm.taobao.org/@babel/runtime/download/@babel/runtime-7.11.2.tgz?cache=0&sync_timestamp=1596637803941&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fruntime%2Fdownload%2F%40babel%2Fruntime-7.11.2.tgz#f549c13c754cc40b87644b9fa9f09a6a95fe0736"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user