v-dialog(v-model='show'
:color='options.color'
:title='title'
:max-width='options.width'
:style="{ zIndex: options.zIndex, position: 'absolute' }"
@keydown.esc='cancel')
v-card
v-card-title {{ title }}
v-card-text.pa-4(v-show='!!message') {{ message }}
v-card-actions.pt-0
v-spacer
v-btn(color='primary darken-1' text
@click='agree') {{$t('common.ok')}}
v-btn(color='secondary'
text @click='cancel') {{$t('common.cancel')}}