- Refresh Count: {{ state.count }}
+
+ Refresh Count: {{ count }}
```
```js
-import { reactive } from 'vue';
+import { ref } from 'vue';
import { Toast } from 'vant';
export default {
setup() {
- const state = reactive({
- count: 0,
- loading: false,
- });
+ const count = ref(0);
+ const loading = ref(false);
const onRefresh = () => {
setTimeout(() => {
Toast('Refresh Success');
- state.loading = false;
- state.count++;
+ loading.value = false;
+ count.value++;
}, 1000);
};
return {
- state,
+ count,
+ loading,
onRefresh,
};
},
diff --git a/src/pull-refresh/README.zh-CN.md b/src/pull-refresh/README.zh-CN.md
index 8c4747c43..a65766c7d 100644
--- a/src/pull-refresh/README.zh-CN.md
+++ b/src/pull-refresh/README.zh-CN.md
@@ -23,31 +23,30 @@ app.use(PullRefresh);
下拉刷新时会触发 `refresh` 事件,在事件的回调函数中可以进行同步或异步操作,操作完成后将 `v-model` 设置为 `false`,表示加载完成。
```html
-
- 刷新次数: {{ state.count }}
+
+ 刷新次数: {{ count }}
```
```js
-import { reactive } from 'vue';
+import { ref } from 'vue';
import { Toast } from 'vant';
export default {
setup() {
- const state = reactive({
- count: 0,
- loading: false,
- });
+ const count = ref(0);
+ const loading = ref(false);
const onRefresh = () => {
setTimeout(() => {
Toast('刷新成功');
- state.loading = false;
- state.count++;
+ loading.value = false;
+ count.value++;
}, 1000);
};
return {
- state,
+ count,
+ loading,
onRefresh,
};
},
diff --git a/src/tree-select/README.md b/src/tree-select/README.md
index 676da3ed7..3edef4df5 100644
--- a/src/tree-select/README.md
+++ b/src/tree-select/README.md
@@ -22,21 +22,19 @@ app.use(TreeSelect);
```html
```
```js
-import { reactive } from 'vue';
+import { ref } from 'vue';
export default {
setup() {
- const state = reactive({
- activeId: 1,
- activeIndex: 0,
- });
+ const activeId = ref(1);
+ const activeIndex = ref(0);
const items = [
{
text: 'Group 1',
@@ -55,8 +53,9 @@ export default {
];
return {
- state,
items,
+ activeId,
+ activeIndex,
};
},
};
@@ -66,21 +65,19 @@ export default {
```html
```
```js
-import { reactive } from 'vue';
+import { ref } from 'vue';
export default {
setup() {
- const state = reactive({
- activeId: [1, 2],
- activeIndex: 0,
- });
+ const activeId = ref([1, 2]);
+ const activeIndex = ref(0);
const items = [
{
text: 'Group 1',
@@ -99,8 +96,9 @@ export default {
];
return {
- state,
items,
+ activeId,
+ activeIndex,
};
},
};
diff --git a/src/tree-select/README.zh-CN.md b/src/tree-select/README.zh-CN.md
index 8a7154d8b..2c06483b3 100644
--- a/src/tree-select/README.zh-CN.md
+++ b/src/tree-select/README.zh-CN.md
@@ -24,21 +24,19 @@ app.use(TreeSelect);
```html
```
```js
-import { reactive } from 'vue';
+import { ref } from 'vue';
export default {
setup() {
- const state = reactive({
- activeId: 1,
- activeIndex: 0,
- });
+ const activeId = ref(1);
+ const activeIndex = ref(0);
const items = [
{
text: '浙江',
@@ -57,8 +55,9 @@ export default {
];
return {
- state,
items,
+ activeId,
+ activeIndex,
};
},
};
@@ -70,21 +69,19 @@ export default {
```html
```
```js
-import { reactive } from 'vue';
+import { ref } from 'vue';
export default {
setup() {
- const state = reactive({
- activeId: [1, 2],
- activeIndex: 0,
- });
+ const activeId = ref([1, 2]);
+ const activeIndex = ref(0);
const items = [
{
text: '浙江',
@@ -103,8 +100,9 @@ export default {
];
return {
- state,
items,
+ activeId,
+ activeIndex,
};
},
};