hrms-user/src/modules/06_assess/componenst/step/step1.vue
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 7e99b5fc4b UI ประเมินผล
2023-12-13 15:24:59 +07:00

56 lines
1.7 KiB
Vue

<script setup lang="ts">
import { ref } from "vue";
const feature1 = ref<boolean>(false);
const feature2 = ref<boolean>(false);
const feature3 = ref<boolean>(false);
const feature4 = ref<boolean>(false);
const feature5 = ref<boolean>(false);
</script>
<template>
<q-list>
<q-item v-ripple>
<q-item-section avatar>
<q-checkbox keep-color color="primary" v-model="feature1" />
</q-item-section>
<q-item-section>
<q-item-label>ตรวจสอบคณสมบ</q-item-label>
</q-item-section>
</q-item>
<q-item v-ripple>
<q-item-section avatar>
<q-checkbox keep-color color="primary" v-model="feature2" />
</q-item-section>
<q-item-section>
<q-item-label>ตรวจสอบคณสมบ</q-item-label>
</q-item-section>
</q-item>
<q-item v-ripple>
<q-item-section avatar>
<q-checkbox keep-color color="primary" v-model="feature3" />
</q-item-section>
<q-item-section>
<q-item-label>ตรวจสอบคณสมบ</q-item-label>
</q-item-section>
</q-item>
<q-item v-ripple>
<q-item-section avatar>
<q-checkbox keep-color color="primary" v-model="feature4" />
</q-item-section>
<q-item-section>
<q-item-label>ตรวจสอบคณสมบ</q-item-label>
</q-item-section>
</q-item>
<q-item v-ripple>
<q-item-section avatar>
<q-checkbox keep-color color="primary" v-model="feature5" />
</q-item-section>
<q-item-section>
<q-item-label>ตรวจสอบคณสมบ</q-item-label>
</q-item-section>
</q-item>
</q-list>
</template>
<style scoped></style>