new.vue 818 B

12345678910111213141516171819202122232425262728293031323334
  1. <template>
  2. <div>
  3. <LayoutCommonSection>
  4. <UiFormCreation
  5. :model="ResidenceArea"
  6. go-back-route="/parameters/residence_areas"
  7. >
  8. <template #default="{ entity }">
  9. <v-container :fluid="true" class="container">
  10. <v-row>
  11. <v-col cols="12" sm="6">
  12. <UiInputText
  13. v-model="entity.label"
  14. field="label"
  15. type="string"
  16. :rules="rules()"
  17. />
  18. </v-col>
  19. </v-row>
  20. </v-container>
  21. </template>
  22. </UiFormCreation>
  23. </LayoutCommonSection>
  24. </div>
  25. </template>
  26. <script setup lang="ts">
  27. import ResidenceArea from '~/models/Billing/ResidenceArea'
  28. definePageMeta({
  29. name: 'freemium_event_create_page',
  30. })
  31. </script>