条件エディタ追加
This commit is contained in:
@@ -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'
|
||||
|
||||
Reference in New Issue
Block a user