64 lines
1.4 KiB
Vue
64 lines
1.4 KiB
Vue
<template>
|
|
<q-dialog v-model="active" no-route-dismiss>
|
|
<div class="column bg-white no-wrap">
|
|
<div class="header row">
|
|
<div class="caption col row items-center q-ml-md">
|
|
<slot name="header"></slot>
|
|
</div>
|
|
<div class="close-icon column justify-center items-center">
|
|
<q-btn v-close-popup flat round dense>
|
|
<q-icon name="la la-times" size="18px"></q-icon>
|
|
</q-btn>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="col q-mx-md">
|
|
<slot></slot>
|
|
</div>
|
|
|
|
<div class="row justify-end q-pa-md">
|
|
<slot name="footer"></slot>
|
|
</div>
|
|
</div>
|
|
</q-dialog>
|
|
</template>
|
|
|
|
<script>
|
|
//-----------------------------------------------------------------------------
|
|
import Vue from 'vue';
|
|
import Component from 'vue-class-component';
|
|
|
|
const DialogProps = Vue.extend({
|
|
props: {
|
|
value: Boolean,
|
|
}
|
|
});
|
|
|
|
export default @Component({
|
|
})
|
|
class Dialog extends DialogProps {
|
|
get active() {
|
|
return this.value;
|
|
}
|
|
|
|
set active(value) {
|
|
this.$emit('input', value);
|
|
}
|
|
}
|
|
//-----------------------------------------------------------------------------
|
|
</script>
|
|
|
|
<style scoped>
|
|
.header {
|
|
height: 50px;
|
|
}
|
|
|
|
.caption {
|
|
font-size: 110%;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.close-icon {
|
|
width: 50px;
|
|
}
|
|
</style> |