12 lines
315 B
Vue
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>
|