| 123456789101112131415161718192021222324252627 |
- <template>
- <LayoutContainer>
- <LayoutParametersSection>
- <LayoutParametersEntityTable
- :model="EducationTiming"
- :columns-definitions="[{ property: 'timing' }]"
- />
- </LayoutParametersSection>
- </LayoutContainer>
- </template>
- <script setup lang="ts">
- import EducationTiming from '~/models/Education/EducationTiming'
- import { useOrganizationProfileStore } from '~/stores/organizationProfile'
- definePageMeta({
- name: 'parameters_education_timings_page',
- })
- const organizationProfile = useOrganizationProfileStore()
- if (organizationProfile.parametersId === null) {
- throw new Error('Missing organization parameters id')
- }
- </script>
- <style scoped lang="scss"></style>
|