feat: add decimal places for longitude and latitude inputs in CustomerAddressEdit #1199

Merged
pablone merged 1 commits from fixDecimalP into master 2025-01-13 07:03:17 +00:00
1 changed files with 7 additions and 1 deletions

View File

@ -247,8 +247,14 @@ function handleLocation(data, location) {
:label="t('Longitude')"
clearable
v-model="data.longitude"
:decimal-places="7"
/>
<VnInputNumber
:label="t('Latitude')"
clearable
v-model="data.latitude"
:decimal-places="7"
/>
<VnInputNumber :label="t('Latitude')" clearable v-model="data.latitude" />
</VnRow>
<h4 class="q-mb-xs">{{ t('Notes') }}</h4>
<VnRow