12 lines
245 B
Vue
12 lines
245 B
Vue
<script setup lang="ts">
|
|
import CertificationComponent from '~/components/CertificationComponent.vue';
|
|
|
|
definePageMeta({ title: 'Certifications' });
|
|
</script>
|
|
|
|
<template>
|
|
<q-page padding>
|
|
<CertificationComponent />
|
|
</q-page>
|
|
</template>
|