34 lines
582 B
Vue
34 lines
582 B
Vue
<template>
|
|
<div class="app-confirm">
|
|
<h2 class="ui-headline" v-localize="model.title"></h2>
|
|
<p v-localize:html="model.text"></p>
|
|
<div class="app-confirm-buttons">
|
|
<ui-button type="light" label="@ui.close" @click="config.close"></ui-button>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
|
|
<script>
|
|
//import Overlay from 'zero/helpers/overlay.js'
|
|
|
|
export default {
|
|
|
|
props: {
|
|
model: Object,
|
|
config: Object
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
.app-confirm-buttons
|
|
{
|
|
margin-top: 30px;
|
|
}
|
|
|
|
.app-confirm p
|
|
{
|
|
line-height: 1.4;
|
|
}
|
|
</style> |