refactor: tree component no node label

This commit is contained in:
puriphatt 2024-09-04 15:00:10 +07:00
parent d8a6b346ab
commit 4ac31e3cb0
2 changed files with 5 additions and 0 deletions

View file

@ -43,6 +43,7 @@ defineEmits<{
:node-key="nodeKey"
:label-key="labelKey"
:children-key="childrenKey"
:no-nodes-label="$t('general.noData')"
v-model:expanded="expandedTree"
style="color: var(--foreground)"
>

View file

@ -133,3 +133,7 @@ div.fullscreen.q-drawer__backdrop {
.q-tree__node-header:before {
top: -32px !important;
}
.q-tree.q-tree--standard.text-transparent {
color: hsl(var(--text-mute)) !important;
}