| 12345678910111213141516171819202122232425262728293031323334 |
- <template>
- <div>
- <LayoutCommonSection>
- <UiFormCreation
- :model="ResidenceArea"
- go-back-route="/parameters/residence_areas"
- >
- <template #default="{ entity }">
- <v-container :fluid="true" class="container">
- <v-row>
- <v-col cols="12" sm="6">
- <UiInputText
- v-model="entity.label"
- field="label"
- type="string"
- :rules="rules()"
- />
- </v-col>
- </v-row>
- </v-container>
- </template>
- </UiFormCreation>
- </LayoutCommonSection>
- </div>
- </template>
- <script setup lang="ts">
- import ResidenceArea from '~/models/Billing/ResidenceArea'
- definePageMeta({
- name: 'freemium_event_create_page',
- })
- </script>
|