api แต่งตั้ง - เลื่อน ,อื่น

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2023-08-15 17:58:41 +07:00
parent b4ac343685
commit f7e686fbec
10 changed files with 3770 additions and 4 deletions

View file

@ -0,0 +1,29 @@
<script setup lang="ts">
const props = defineProps({
title: String,
close: {
type: Function,
default: () => console.log("not function"),
},
});
const close = async () => {
props.close();
};
</script>
<template>
<q-toolbar class="q-py-md">
<q-toolbar-title class="header-text">{{ title }}</q-toolbar-title>
<q-btn icon="close" unelevated round dense @click="close" style="color: #ff8080; background-color: #ffdede" />
</q-toolbar>
</template>
<style scoped lang="scss">
.header-text {
font-size: 18px;
font-weight: 600;
line-height: 26px;
color: #35373C;
}
</style>