แก้ไข /เพิ่ม ui insignia (เจ้าหน้าที่กลาง)

This commit is contained in:
AnandaTon 2023-08-04 13:48:56 +07:00
parent c752bfede6
commit b124da1448
11 changed files with 2428 additions and 84 deletions

View file

@ -0,0 +1,27 @@
<template>
<q-toolbar>
<q-toolbar-title class="text-subtitle2 text-bold">{{
tittle
}}</q-toolbar-title>
<q-btn
icon="close"
unelevated
round
dense
@click="close"
style="color: #ff8080; background-color: #ffdede"
/>
</q-toolbar>
</template>
<script setup lang="ts">
const props = defineProps({
tittle: String,
close: {
type: Function,
default: () => console.log("not function"),
},
});
const close = async () => {
props.close();
};
</script>