条件エディタ追加

This commit is contained in:
2024-01-22 10:52:55 +09:00
parent 276e5e9122
commit 5cd6d02f6e
29 changed files with 1209 additions and 382 deletions

View File

@@ -1,12 +1,12 @@
<template>
<!-- <div class="q-pa-md q-gutter-sm" > -->
<q-dialog :model-value="visible" persistent>
<q-card :style="{minWidth : width }">
<q-dialog :model-value="visible" persistent bordered>
<q-card :style="{minWidth : width}" >
<q-card-section>
<div class="text-h6">{{ name }}選択</div>
<div class="text-h6">{{ name }}</div>
</q-card-section>
<q-card-section class="q-pt-none">
<q-card-section class="q-pt-none" :style="{...(height? {minHeight:height}:{}) }">
<slot></slot>
</q-card-section>
<q-card-actions align="right" class="text-primary">
@@ -24,7 +24,8 @@ export default {
props: {
name:String,
visible: Boolean,
width:String
width:String,
height:String
},
emits: [
'close'