Advertisement
kidto1412

form parent

May 15th, 2025
348
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <template>
  2.   <applicant-base-form v-model="form"></applicant-base-form>
  3. </template>
  4. <script setup lang="ts">
  5. import { ApplicantDataRequest } from 'src/common/entities/applicant.entity'
  6. import ApplicantBaseForm from 'src/components/lib/ApplicantBaseForm.vue'
  7. import { ref } from 'vue'
  8.  
  9. const form = ref({} as ApplicantDataRequest)
  10. </script>
  11.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement