Files
bab-app/src/pages/CertificationPage.vue
2023-11-24 07:52:01 -05:00

12 lines
315 B
Vue

<template>
<toolbar-component pageTitle="Certification" />
<q-page padding>
<CertificationComponent />
</q-page>
</template>
<script setup lang="ts">
import CertificationComponent from 'components/CertificationComponent.vue';
import ToolbarComponent from 'src/components/ToolbarComponent.vue';
</script>