Fix: prevent active disabled select

This commit is contained in:
jhyns 2024-05-23 20:22:10 +09:00
parent c64240e509
commit ab7398668a

View File

@ -74,7 +74,7 @@ function handleSubmit() {
placeholder="시/군/구" placeholder="시/군/구"
v-model="gugun" v-model="gugun"
:options="gugunList" :options="gugunList"
:disabled="gugunList.length <= 1" :disabled="(sido?.sidoCode ?? 0) === 0 || gugunList.length <= 1"
optionName="gugunName" optionName="gugunName"
/> />
<Select <Select