mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
docs(Form): fix area values (#9972)
This commit is contained in:
parent
419ca5a120
commit
90bb868026
@ -431,9 +431,9 @@ export default {
|
||||
setup() {
|
||||
const result = ref('');
|
||||
const showArea = ref(false);
|
||||
const onConfirm = (value) => {
|
||||
const onConfirm = (areaValues) => {
|
||||
showArea.value = false;
|
||||
result.value = values
|
||||
result.value = areaValues
|
||||
.filter((item) => !!item)
|
||||
.map((item) => item.name)
|
||||
.join('/');
|
||||
|
@ -461,9 +461,9 @@ export default {
|
||||
setup() {
|
||||
const result = ref('');
|
||||
const showArea = ref(false);
|
||||
const onConfirm = (value) => {
|
||||
const onConfirm = (areaValues) => {
|
||||
showArea.value = false;
|
||||
result.value = values
|
||||
result.value = areaValues
|
||||
.filter((item) => !!item)
|
||||
.map((item) => item.name)
|
||||
.join('/');
|
||||
|
@ -23,8 +23,8 @@ const t = useTranslate({
|
||||
const areaCode = ref('');
|
||||
const showArea = ref(false);
|
||||
|
||||
const onConfirm = (values: AreaColumnOption[]) => {
|
||||
areaCode.value = values
|
||||
const onConfirm = (areaValues: AreaColumnOption[]) => {
|
||||
areaCode.value = areaValues
|
||||
.filter((item) => !!item)
|
||||
.map((item) => item.name)
|
||||
.join('/');
|
||||
|
Loading…
x
Reference in New Issue
Block a user