index.vue 634 B

12345678910111213141516171819202122232425
  1. <template>
  2. <LayoutContainer>
  3. <LayoutParametersEntityTable
  4. :model="EducationTiming"
  5. :columns-definitions="[{ property: 'timing' }]"
  6. />
  7. </LayoutContainer>
  8. </template>
  9. <script setup lang="ts">
  10. import EducationTiming from '~/models/Education/EducationTiming'
  11. import { useOrganizationProfileStore } from '~/stores/organizationProfile'
  12. definePageMeta({
  13. name: 'parameters_education_timings_page',
  14. })
  15. const organizationProfile = useOrganizationProfileStore()
  16. if (organizationProfile.parametersId === null) {
  17. throw new Error('Missing organization parameters id')
  18. }
  19. </script>
  20. <style scoped lang="scss"></style>