mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-05 05:42:44 +08:00
985 B
985 B
useCustomFieldValue
Intro
Used to custom Field value.
Usage
Basic Usage
If you want to custom Form items, you can insert your component into the input
slot of the Field component, and call the useCustomFieldValue
method inside your custom component.
MyComponent
// MyComponent.vue
import { useCustomFieldValue } from '@vant/use';
export default {
setup() {
useCustomFieldValue(() => 'Some value');
},
};
Form
<van-form>
<van-field name="my-field" label="Custom Field">
<template #input>
<my-component />
</template>
</van-field>
</van-form>
API
Type Declarations
function useCustomFieldValue(customValue: () => unknown): void;
Params
Name | Description | Type | Default Value |
---|---|---|---|
customValue | Function to get field value | () => unknown | - |