12 lines
362 B
Vue
12 lines
362 B
Vue
<script setup lang="ts">
|
|
import Registry from "@/modules/04_registryNew/components/registry/registry.vue";
|
|
</script>
|
|
<template>
|
|
<div class="toptitle text-dark col-12 row items-center">
|
|
ข้อมูลทะเบียนประวัติ
|
|
</div>
|
|
|
|
<q-card flat bordered class="q-pa-md"> <Registry /> </q-card>
|
|
</template>
|
|
|
|
<style scoped></style>
|