fix: เเก้ชื่อ ผิด
This commit is contained in:
parent
d5b88adfa7
commit
76c5e094f6
2 changed files with 133 additions and 0 deletions
40
src/components/01_branch-management/BtnAddComponent.vue
Normal file
40
src/components/01_branch-management/BtnAddComponent.vue
Normal file
|
|
@ -0,0 +1,40 @@
|
|||
<script setup lang="ts">
|
||||
defineProps<{
|
||||
label?: string;
|
||||
}>();
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div class="column items-center box" :class="{ dark: $q.dark.isActive }">
|
||||
<div class="row">
|
||||
<q-btn
|
||||
unelevated
|
||||
@click="$emit('trigger')"
|
||||
size="lg"
|
||||
class="color-btn"
|
||||
icon="mdi-plus"
|
||||
round
|
||||
/>
|
||||
</div>
|
||||
<div class="row q-mt-sm color-text">{{ label }}</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<style scoped>
|
||||
.box {
|
||||
--_btn-add-color: var(--cyan-6-hsl);
|
||||
|
||||
.color-btn {
|
||||
color: hsl(var(--_btn-add-color));
|
||||
background: hsla(var(--_btn-add-color) / 0.1) !important;
|
||||
}
|
||||
|
||||
.color-text {
|
||||
color: var(--stone-6);
|
||||
}
|
||||
|
||||
&.dark {
|
||||
--_btn-add-color: var(--cyan-5-hsl);
|
||||
}
|
||||
}
|
||||
</style>
|
||||
Loading…
Add table
Add a link
Reference in a new issue