docs: improve useCustomFieldValue demo (#9709)

This commit is contained in:
neverland 2021-10-22 10:21:12 +08:00 committed by GitHub
parent 137be6d79e
commit b07f733efb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 12 additions and 2 deletions

View File

@ -14,11 +14,16 @@ If you want to custom Form items, you can insert your component into the `input`
```js
// MyComponent.vue
import { ref } from 'vue';
import { useCustomFieldValue } from '@vant/use';
export default {
setup() {
useCustomFieldValue(() => 'Some value');
const myValue = ref(0);
useCustomFieldValue(() => myValue.value);
return { myValue };
},
};
```

View File

@ -16,12 +16,17 @@
```js
// MyComponent.vue
import { ref } from 'vue';
import { useCustomFieldValue } from '@vant/use';
export default {
setup() {
const myValue = ref(0);
// 此处传入的值会替代 Field 组件内部的 value
useCustomFieldValue(() => 'Some value');
useCustomFieldValue(() => myValue.value);
return { myValue };
},
};
```