ตรวจสอบคุณสมบัติ รายละเอียดส่วนบุคคล - ประเมิน

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2023-12-15 17:23:33 +07:00
parent eab7abb890
commit 6ebe44e821
8 changed files with 878 additions and 594 deletions

View file

@ -0,0 +1,41 @@
<script setup lang="ts">
const props = defineProps({
columns: {
type: Object,
require: true,
},
});
</script>
<template>
<d-table
ref="table"
:columns="props.columns"
row-key="name"
flat
bordered
dense
class="custom-header-table"
style="width: 580px"
>
<!-- <template v-slot:header="props">
<q-tr :props="props">
<q-th v-for="col in props.cols" :key="col.name" :props="props">
<span class="text-weight-medium" v-html="col.label" />
</q-th>
<q-th auto-width />
</q-tr>
</template> -->
<!-- <template v-slot:body="props">
<q-tr :props="props" class="cursor-pointer">
<q-td v-for="col in props.cols" :key="col.name" :props="props">
<div>
{{ col.value }}
</div>
</q-td>
</q-tr>
</template> -->
</d-table>
</template>
<style scoped></style>