/*! 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:'
Used to custom Field value.
\nIf 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.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<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
\nfunction useCustomFieldValue(customValue: () => unknown): void;\n
\nName | \nDescription | \nType | \nDefault Value | \n
---|---|---|---|
customValue | \nFunction to get field value | \n() => unknown | \n- | \n