diff --git a/packages/vant/docs/site/index.ts b/packages/vant/docs/site/index.ts
new file mode 100644
index 000000000..8972e4cdd
--- /dev/null
+++ b/packages/vant/docs/site/index.ts
@@ -0,0 +1,5 @@
+export { useTranslate, initDemoLocale } from './use-translate';
+
+/** Generate the CDN URL of assets. */
+export const cdnURL = (path: string) =>
+ `https://cdn.jsdelivr.net/npm/@vant/assets/${path}`;
diff --git a/packages/vant/src/action-bar/demo/index.vue b/packages/vant/src/action-bar/demo/index.vue
index e500db8ee..eed313bc9 100644
--- a/packages/vant/src/action-bar/demo/index.vue
+++ b/packages/vant/src/action-bar/demo/index.vue
@@ -2,7 +2,7 @@
import VanActionBar from '..';
import VanActionBarIcon from '../../action-bar-icon';
import VanActionBarButton from '../../action-bar-button';
-import { useTranslate } from '../../../docs/site/use-translate';
+import { useTranslate } from '../../../docs/site';
import { Toast } from '../../toast';
const t = useTranslate({
diff --git a/packages/vant/src/action-sheet/demo/index.vue b/packages/vant/src/action-sheet/demo/index.vue
index 89f571698..5af5339b2 100644
--- a/packages/vant/src/action-sheet/demo/index.vue
+++ b/packages/vant/src/action-sheet/demo/index.vue
@@ -2,7 +2,7 @@
import VanCell from '../../cell';
import VanActionSheet, { ActionSheetAction } from '..';
import { ref, computed } from 'vue';
-import { useTranslate } from '../../../docs/site/use-translate';
+import { useTranslate } from '../../../docs/site';
import { Toast } from '../../toast';
const t = useTranslate({
diff --git a/packages/vant/src/address-edit/demo/index.vue b/packages/vant/src/address-edit/demo/index.vue
index 42499a25d..f032b118a 100644
--- a/packages/vant/src/address-edit/demo/index.vue
+++ b/packages/vant/src/address-edit/demo/index.vue
@@ -2,7 +2,7 @@
import VanAddressEdit from '..';
import { ref } from 'vue';
import { areaList } from '@vant/area-data';
-import { useTranslate } from '../../../docs/site/use-translate';
+import { useTranslate } from '../../../docs/site';
import { Toast } from '../../toast';
const t = useTranslate({
diff --git a/packages/vant/src/address-list/AddressListItem.tsx b/packages/vant/src/address-list/AddressListItem.tsx
index 4f89b5d4b..d5d40b602 100644
--- a/packages/vant/src/address-list/AddressListItem.tsx
+++ b/packages/vant/src/address-list/AddressListItem.tsx
@@ -1,7 +1,12 @@
import { defineComponent, type PropType } from 'vue';
// Utils
-import { createNamespace, extend, makeRequiredProp } from '../utils';
+import {
+ extend,
+ createNamespace,
+ makeRequiredProp,
+ type Numeric,
+} from '../utils';
// Components
import { Tag } from '../tag';
@@ -12,8 +17,8 @@ import { Radio } from '../radio';
const [name, bem] = createNamespace('address-item');
export type AddressListAddress = {
- id: number | string;
- tel: number | string;
+ id: Numeric;
+ tel: Numeric;
name: string;
address: string;
isDefault?: boolean;
diff --git a/packages/vant/src/address-list/demo/index.vue b/packages/vant/src/address-list/demo/index.vue
index 2ed2ae7a9..45e5a9f7a 100644
--- a/packages/vant/src/address-list/demo/index.vue
+++ b/packages/vant/src/address-list/demo/index.vue
@@ -1,7 +1,7 @@
diff --git a/packages/vant/src/cascader/Cascader.tsx b/packages/vant/src/cascader/Cascader.tsx
index 20a70e967..3e42b4a4f 100644
--- a/packages/vant/src/cascader/Cascader.tsx
+++ b/packages/vant/src/cascader/Cascader.tsx
@@ -14,6 +14,7 @@ import {
makeStringProp,
createNamespace,
HAPTICS_FEEDBACK,
+ type Numeric,
} from '../utils';
// Components
@@ -68,7 +69,7 @@ export default defineComponent({
const getSelectedOptionsByValue = (
options: CascaderOption[],
- value: string | number
+ value: Numeric
): CascaderOption[] | undefined => {
for (const option of options) {
if (option[valueKey] === value) {
diff --git a/packages/vant/src/cascader/demo/index.vue b/packages/vant/src/cascader/demo/index.vue
index 1efa9ca94..ce140661b 100644
--- a/packages/vant/src/cascader/demo/index.vue
+++ b/packages/vant/src/cascader/demo/index.vue
@@ -3,10 +3,11 @@ import VanField from '../../field';
import VanPopup from '../../popup';
import VanCascader, { CascaderOption } from '..';
import { computed, reactive } from 'vue';
-import { useTranslate } from '../../../docs/site/use-translate';
+import { useTranslate } from '../../../docs/site';
import { deepClone } from '../../utils/deep-clone';
import zhCNOptions from './area-zh-CN';
import enUSOptions from './area-en-US';
+import type { Numeric } from '../../utils';
const t = useTranslate({
'zh-CN': {
@@ -55,7 +56,7 @@ const t = useTranslate({
type StateItem = {
show: boolean;
- value: string | number | undefined;
+ value: Numeric | undefined;
result: string;
options?: CascaderOption[];
tabIndex?: number;
@@ -129,7 +130,7 @@ const onFinish = (
{
value,
selectedOptions,
- }: { value: number | string; selectedOptions: CascaderOption[] }
+ }: { value: Numeric; selectedOptions: CascaderOption[] }
) => {
const result = selectedOptions
.map((option) => option.text || option.name)
diff --git a/packages/vant/src/cascader/types.ts b/packages/vant/src/cascader/types.ts
index 2fc1ae502..2532add76 100644
--- a/packages/vant/src/cascader/types.ts
+++ b/packages/vant/src/cascader/types.ts
@@ -1,6 +1,8 @@
+import type { Numeric } from '../utils';
+
export type CascaderOption = {
text?: string;
- value?: string | number;
+ value?: Numeric;
color?: string;
disabled?: boolean;
children?: CascaderOption[];
diff --git a/packages/vant/src/cell/demo/index.vue b/packages/vant/src/cell/demo/index.vue
index ea44bf4db..0133e640c 100644
--- a/packages/vant/src/cell/demo/index.vue
+++ b/packages/vant/src/cell/demo/index.vue
@@ -3,7 +3,7 @@ import VanCellGroup from '../../cell-group';
import VanCell from '..';
import VanTag from '../../tag';
import VanIcon from '../../icon';
-import { useTranslate } from '../../../docs/site/use-translate';
+import { useTranslate } from '../../../docs/site';
const t = useTranslate({
'zh-CN': {
diff --git a/packages/vant/src/checkbox/Checker.tsx b/packages/vant/src/checkbox/Checker.tsx
index b7ab81a72..d23c146c2 100644
--- a/packages/vant/src/checkbox/Checker.tsx
+++ b/packages/vant/src/checkbox/Checker.tsx
@@ -7,6 +7,7 @@ import {
unknownProp,
makeStringProp,
makeRequiredProp,
+ type Numeric,
} from '../utils';
import { Icon } from '../icon';
@@ -16,7 +17,7 @@ export type CheckerLabelPosition = 'left' | 'right';
export type CheckerParent = {
props: {
disabled?: boolean;
- iconSize?: number | string;
+ iconSize?: Numeric;
direction?: CheckerDirection;
checkedColor?: string;
};
diff --git a/packages/vant/src/checkbox/demo/index.vue b/packages/vant/src/checkbox/demo/index.vue
index c42b8011a..33b72081f 100644
--- a/packages/vant/src/checkbox/demo/index.vue
+++ b/packages/vant/src/checkbox/demo/index.vue
@@ -5,7 +5,7 @@ import VanButton from '../../button';
import VanCellGroup from '../../cell-group';
import VanCell from '../../cell';
import { ref, reactive } from 'vue';
-import { useTranslate } from '../../../docs/site/use-translate';
+import { cdnURL, useTranslate } from '../../../docs/site';
import { useRefs } from '../../composables/use-refs';
import type { CheckboxInstance } from '../types';
import type { CheckboxGroupInstance } from '../../checkbox-group';
@@ -49,7 +49,7 @@ const state = reactive({
checkbox3: true,
checkboxShape: true,
checkboxLabel: true,
- checboxIcon: true,
+ checkboxIcon: true,
list: ['a', 'b'],
result: ['a', 'b'],
result2: [],
@@ -58,9 +58,8 @@ const state = reactive({
horizontalResult: [],
});
-const activeIcon = 'https://cdn.jsdelivr.net/npm/@vant/assets/user-active.png';
-const inactiveIcon =
- 'https://cdn.jsdelivr.net/npm/@vant/assets/user-inactive.png';
+const activeIcon = cdnURL('user-active.png');
+const inactiveIcon = cdnURL('user-inactive.png');
const group = ref();
const [refs, setRefs] = useRefs();
@@ -105,7 +104,7 @@ const toggleAll = () => {
-
+
{{ t('customIconSize') }}
diff --git a/packages/vant/src/circle/Circle.tsx b/packages/vant/src/circle/Circle.tsx
index 019c3784c..85a037720 100644
--- a/packages/vant/src/circle/Circle.tsx
+++ b/packages/vant/src/circle/Circle.tsx
@@ -16,13 +16,14 @@ import {
makeNumberProp,
makeNumericProp,
createNamespace,
+ type Numeric,
} from '../utils';
const [name, bem] = createNamespace('circle');
let uid = 0;
-const format = (rate: string | number) => Math.min(Math.max(+rate, 0), 100);
+const format = (rate: Numeric) => Math.min(Math.max(+rate, 0), 100);
function getPath(clockwise: boolean, viewBoxSize: number) {
const sweepFlag = clockwise ? 1 : 0;
diff --git a/packages/vant/src/circle/demo/index.vue b/packages/vant/src/circle/demo/index.vue
index e88fd6d1e..416c82243 100644
--- a/packages/vant/src/circle/demo/index.vue
+++ b/packages/vant/src/circle/demo/index.vue
@@ -2,7 +2,7 @@
import VanCircle from '..';
import VanButton from '../../button';
import { ref } from 'vue';
-import { useTranslate } from '../../../docs/site/use-translate';
+import { useTranslate } from '../../../docs/site';
const t = useTranslate({
'zh-CN': {
diff --git a/packages/vant/src/col/demo/index.vue b/packages/vant/src/col/demo/index.vue
index bd57624d5..2641a9219 100644
--- a/packages/vant/src/col/demo/index.vue
+++ b/packages/vant/src/col/demo/index.vue
@@ -1,7 +1,7 @@
diff --git a/packages/vant/src/list/demo/index.vue b/packages/vant/src/list/demo/index.vue
index 70cbb83b8..8f55f0e91 100644
--- a/packages/vant/src/list/demo/index.vue
+++ b/packages/vant/src/list/demo/index.vue
@@ -5,7 +5,7 @@ import VanList from '..';
import VanCell from '../../cell';
import VanPullRefresh from '../../pull-refresh';
import { ref } from 'vue';
-import { useTranslate } from '../../../docs/site/use-translate';
+import { useTranslate } from '../../../docs/site';
const t = useTranslate({
'zh-CN': {
diff --git a/packages/vant/src/loading/demo/index.vue b/packages/vant/src/loading/demo/index.vue
index 1614cb0b5..327cae667 100644
--- a/packages/vant/src/loading/demo/index.vue
+++ b/packages/vant/src/loading/demo/index.vue
@@ -1,6 +1,6 @@
diff --git a/packages/vant/src/rate/demo/index.vue b/packages/vant/src/rate/demo/index.vue
index ef84bc3d7..505bf5789 100644
--- a/packages/vant/src/rate/demo/index.vue
+++ b/packages/vant/src/rate/demo/index.vue
@@ -1,7 +1,7 @@