/*! For license information please see 4558.9f42c8a1.js.LICENSE.txt */ (self.webpackChunk=self.webpackChunk||[]).push([["4558"],{54250:function(s,n,a){"use strict";a.r(n);var l=a("80681");let t=["innerHTML"];n.default={setup:()=>({html:""}),render:()=>((0,l.wg)(),(0,l.iD)("div",{class:"van-doc-markdown-body",innerHTML:'

useCustomFieldValue

\n

Intro

\n

Used to custom Field value.

\n

Usage

\n

Basic Usage

\n

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.

\n

MyComponent

\n
// MyComponent.vue\nimport { ref } from 'vue';\nimport { useCustomFieldValue } from '@vant/use';\n\nexport default {\n  setup() {\n    const myValue = ref(0);\n\n    useCustomFieldValue(() => myValue.value);\n\n    return { myValue };\n  },\n};\n
\n

Form

\n
<van-form>\n  <van-field name="my-field" label="Custom Field">\n    <template #input>\n      <my-component />\n    </template>\n  </van-field>\n</van-form>\n
\n

API

\n

Type Declarations

\n
function useCustomFieldValue(customValue: () => unknown): void;\n
\n

Params

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescriptionTypeDefault Value
customValueFunction to get field value() => unknown-
\n
'},null,8,t))}}}]);