index.vue 703 B

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