chore: rename vModel to v-model (#8150)

This commit is contained in:
neverland
2021-02-14 11:05:13 +08:00
committed by GitHub
parent d67b6e1184
commit fa8b494f0e
4 changed files with 12 additions and 12 deletions
+4 -4
View File
@@ -1,10 +1,10 @@
import {
ref,
Ref,
watch,
reactive,
computed,
onMounted,
ComputedRef,
onActivated,
onDeactivated,
onBeforeUnmount,
@@ -40,9 +40,9 @@ export type SwipeProvide = {
vertical?: boolean;
lazyRender?: boolean;
};
size: Ref<number>;
count: Ref<number>;
activeIndicator: Ref<number>;
size: ComputedRef<number>;
count: ComputedRef<number>;
activeIndicator: ComputedRef<number>;
};
export default createComponent({