[UI] version page

This commit is contained in:
xue jiahao
2024-12-06 23:29:16 +08:00
parent 7221f97139
commit 305868f091
10 changed files with 333 additions and 125 deletions

View File

@@ -4,7 +4,7 @@
<q-card class="" style="min-width: 40vw; max-width: 80vw; max-height: 95vh;" :style="cardStyle">
<q-toolbar class="bg-grey-4">
<q-toolbar-title>{{ name }}</q-toolbar-title>
<q-space></q-space>
<q-space v-if="$slots.toolbar"></q-space>
<slot name="toolbar"></slot>
<q-btn flat round dense icon="close" @click="CloseDialogue('Cancel')" />
</q-toolbar>
@@ -41,7 +41,8 @@ export default {
}
},
emits: [
'close'
'close',
'update:visible'
],
setup(props, context) {
const CloseDialogue = (val) => {