เพิ่ม component process ของเงินเดือน

This commit is contained in:
Warunee Tamkoo 2024-03-07 12:15:38 +07:00
parent 6cfee6bab6
commit 274d36f20c
2 changed files with 15 additions and 0 deletions

View file

@ -0,0 +1,9 @@
<script setup lang="ts">
import { ref } from "vue";
</script>
<template>
<div class="q-pa-md">process</div>
</template>
<style lang="scss" scoped></style>

View file

@ -3,6 +3,7 @@ import { onMounted, ref, computed, nextTick } from "vue";
import { useQuasar } from "quasar";
import config from "@/app.config";
import http from "@/plugins/http";
import ProcessStep from "@/modules/13_salary/components/SalaryLists/ProcessStep.vue";
/** importType*/
import type {
@ -386,6 +387,11 @@ onMounted(async () => {
</div>
</q-card>
</q-card>
<q-card flat bordered class="row col-12 q-mt-xs">
<ProcessStep />
</q-card>
<!-- </q-card> -->
</template>