From 9b78830313b230ce17d465e411d1f9c02b6592cc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=B8=A5=E6=B5=A9?= Date: Fri, 6 Dec 2024 16:21:41 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E6=9B=B4=E6=96=B0=20PSelect=20?= =?UTF-8?q?=E7=BB=84=E4=BB=B6=EF=BC=8C=E6=B7=BB=E5=8A=A0=20value=20?= =?UTF-8?q?=E6=8F=92=E6=A7=BD=E6=94=AF=E6=8C=81=EF=BC=8C=E4=BC=98=E5=8C=96?= =?UTF-8?q?=E9=80=89=E9=A1=B9=E5=8A=A0=E8=BD=BD=E5=92=8C=E8=BE=93=E5=85=A5?= =?UTF-8?q?=E4=BA=A4=E4=BA=92=E4=BD=93=E9=AA=8C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/App.vue | 8 +++++++- src/__fk-inputs__/inputs/p-select.tsx | 24 ++++++++++++++++++++---- src/all-custom/all-custom.vue | 1 + 3 files changed, 28 insertions(+), 5 deletions(-) diff --git a/src/App.vue b/src/App.vue index f33c87d..eac8399 100644 --- a/src/App.vue +++ b/src/App.vue @@ -4,7 +4,7 @@ import AllCustom from './all-custom/all-custom.vue'; import TutorialForm from './tutorial-form/index.vue'; import ZodForm from './zod-form/index.vue'; -const selectedCity = ref(); +const selectedCity = ref('NY'); const loading = ref(false); const cities = ref([ { name: 'New York', code: 'NY' }, @@ -53,6 +53,12 @@ const handleE = (eventName: string) => { @change="(e) => handleE('change')(e)" @blur="(e) => handleE('blur')(e)" > +