diff --git a/src/action-sheet/demo/index.vue b/src/action-sheet/demo/index.vue
index d369212b2..64ba73ab5 100644
--- a/src/action-sheet/demo/index.vue
+++ b/src/action-sheet/demo/index.vue
@@ -1,5 +1,5 @@
{
/>
-import { reactive } from 'vue';
+import { ref } from 'vue';
import { useTranslate } from '@demo/use-translate';
const i18n = {
@@ -16,17 +16,15 @@ const i18n = {
};
const t = useTranslate(i18n);
-const state = reactive({
- active1: [0],
- active2: 0,
- active3: [],
- active4: [],
-});
+const active1 = ref([0]);
+const active2 = ref(0);
+const active3 = ref([]);
+const active4 = ref([]);
-
+
{{ t('text') }}
@@ -40,7 +38,7 @@ const state = reactive({
-
+
{{ t('text') }}
@@ -54,7 +52,7 @@ const state = reactive({
-
+
{{ t('text') }}
@@ -68,7 +66,7 @@ const state = reactive({
-
+
{{ t('title') + 1 }}
diff --git a/src/config-provider/demo/index.vue b/src/config-provider/demo/index.vue
index 756a873dd..c65dfbc39 100644
--- a/src/config-provider/demo/index.vue
+++ b/src/config-provider/demo/index.vue
@@ -1,6 +1,6 @@
-import { reactive } from 'vue';
+import { ref } from 'vue';
import { useTranslate } from '@demo/use-translate';
const i18n = {
@@ -18,24 +18,22 @@ const i18n = {
};
const t = useTranslate(i18n);
-const state = reactive({
- phone: '123',
- username: '',
-});
+const phone = ref('123');
+const username = ref('');
-import { reactive } from 'vue';
+import { ref } from 'vue';
import { useTranslate } from '@demo/use-translate';
const i18n = {
@@ -18,10 +18,8 @@ const i18n = {
};
const t = useTranslate(i18n);
-const state = reactive({
- value1: '',
- value2: '',
-});
+const value1 = ref('');
+const value2 = ref('');
const formatter = (value: string) => value.replace(/\d/g, '');
@@ -29,13 +27,13 @@ const formatter = (value: string) => value.replace(/\d/g, '');
-import { reactive } from 'vue';
+import { ref } from 'vue';
import { useTranslate } from '@demo/use-translate';
const i18n = {
@@ -16,24 +16,22 @@ const i18n = {
};
const t = useTranslate(i18n);
-const state = reactive({
- icon1: '',
- icon2: '123',
-});
+const icon1 = ref('');
+const icon2 = ref('123');
-import { reactive } from 'vue';
+import { ref } from 'vue';
import { useTranslate } from '@demo/use-translate';
import { FieldValidateError } from '../../field/types';
@@ -21,10 +21,8 @@ const i18n = {
};
const t = useTranslate(i18n);
-const state = reactive({
- username: '',
- password: '',
-});
+const username = ref('');
+const password = ref('');
const onSubmit = (values: Record) => {
console.log('submit', values);
@@ -43,14 +41,14 @@ const onFailed = (errorInfo: {
-import { reactive } from 'vue';
+import { ref } from 'vue';
import { useTranslate } from '@demo/use-translate';
import FieldTypeArea from './FieldTypeArea.vue';
import FieldTypePicker from './FieldTypePicker.vue';
@@ -38,16 +38,14 @@ const i18n = {
};
const t = useTranslate(i18n);
-const state = reactive({
- rate: 3,
- radio: '1',
- slider: 50,
- stepper: 1,
- uploader: [{ url: 'https://img.yzcdn.cn/vant/leaf.jpg' }],
- checkbox: false,
- checkboxGroup: [],
- switchChecked: false,
-});
+const rate = ref(3);
+const radio = ref('1');
+const slider = ref(50);
+const stepper = ref(1);
+const uploader = ref([{ url: 'https://img.yzcdn.cn/vant/leaf.jpg' }]);
+const checkbox = ref(false);
+const checkboxGroup = ref([]);
+const switchChecked = ref(false);
const onSubmit = (values: Record) => {
console.log(values);
@@ -60,22 +58,19 @@ const onSubmit = (values: Record) => {
-
+
-
+
-
+
{{ t('checkbox') }} 1
@@ -88,7 +83,7 @@ const onSubmit = (values: Record) => {
-
+
{{ t('radio') }} 1
{{ t('radio') }} 2
@@ -97,25 +92,25 @@ const onSubmit = (values: Record) => {
-
+
-
+
-
+
-
+
diff --git a/src/form/demo/FieldTypeArea.vue b/src/form/demo/FieldTypeArea.vue
index 42fa9b6ac..7881fcf7d 100644
--- a/src/form/demo/FieldTypeArea.vue
+++ b/src/form/demo/FieldTypeArea.vue
@@ -1,5 +1,5 @@
-
+
-import { reactive } from 'vue';
+import { ref } from 'vue';
import { useTranslate } from '@demo/use-translate';
const i18n = {
@@ -14,31 +14,29 @@ const i18n = {
};
const t = useTranslate(i18n);
-const state = reactive({
- value: '',
- showCalendar: false,
-});
+const result = ref('');
+const showCalendar = ref(false);
const formatDate = (date: Date) => `${date.getMonth() + 1}/${date.getDate()}`;
const onConfirm = (date: Date) => {
- state.value = formatDate(date);
- state.showCalendar = false;
+ result.value = formatDate(date);
+ showCalendar.value = false;
};
-import { reactive } from 'vue';
+import { ref } from 'vue';
import { useTranslate } from '@demo/use-translate';
const i18n = {
@@ -14,37 +14,30 @@ const i18n = {
};
const t = useTranslate(i18n);
-const state = reactive({
- value: '',
- showPicker: false,
-});
+const result = ref('');
+const showPicker = ref(false);
const onConfirm = (time: string) => {
- state.value = time;
- state.showPicker = false;
+ result.value = time;
+ showPicker.value = false;
};
const onCancel = () => {
- state.showPicker = false;
+ showPicker.value = false;
};
-
+
diff --git a/src/form/demo/FieldTypePicker.vue b/src/form/demo/FieldTypePicker.vue
index d694d800f..0298665ad 100644
--- a/src/form/demo/FieldTypePicker.vue
+++ b/src/form/demo/FieldTypePicker.vue
@@ -1,5 +1,5 @@
-
+
-import { reactive } from 'vue';
+import { ref } from 'vue';
import { useTranslate } from '@demo/use-translate';
import { FieldValidateError } from '../../field/types';
import { Toast } from '../../toast';
@@ -32,12 +32,10 @@ const i18n = {
};
const t = useTranslate(i18n);
-const state = reactive({
- value1: '',
- value2: '',
- value3: 'abc',
- value4: '',
-});
+const value1 = ref('');
+const value2 = ref('');
+const value3 = ref('abc');
+const value4 = ref('');
const pattern = /\d{6}/;
const validator = (val: string) => /1\d{10}/.test(val);
@@ -71,28 +69,28 @@ const onFailed = (errorInfo: {
-import { reactive } from 'vue';
+import { ref } from 'vue';
import { useTranslate } from '@demo/use-translate';
import { ImagePreview, ImagePreviewOptions } from '..';
import { Toast } from '../../toast';
@@ -37,10 +37,8 @@ const images = [
];
const t = useTranslate(i18n);
-const state = reactive({
- show: false,
- index: 0,
-});
+const show = ref(false);
+const index = ref(0);
const onClose = () => Toast(t('closed'));
@@ -52,11 +50,11 @@ const beforeClose = () =>
});
const showComponentCall = () => {
- state.show = true;
+ show.value = true;
};
-const onChange = (index: number) => {
- state.index = index;
+const onChange = (newIndex: number) => {
+ index.value = newIndex;
};
const showImagePreview = (options: Partial = {}) => {
@@ -102,12 +100,8 @@ const showImagePreview = (options: Partial = {}) => {
{{ t('componentCall') }}
-
- {{ t('index', state.index) }}
+
+ {{ t('index', index) }}
diff --git a/src/share-sheet/demo/index.vue b/src/share-sheet/demo/index.vue
index dbda3c74a..a7ee87093 100644
--- a/src/share-sheet/demo/index.vue
+++ b/src/share-sheet/demo/index.vue
@@ -1,5 +1,5 @@
-
+
{
-
+
{
-
+
-
+