mirror of https://github.com/requarks/wiki
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
910 B
41 lines
910 B
6 years ago
|
<template lang="pug">
|
||
|
v-dialog(v-model='isShown', max-width='550')
|
||
|
v-card.wiki-form
|
||
|
.dialog-header.is-short.is-red
|
||
|
v-icon.mr-2(color='white') warning
|
||
|
span Discard Unsaved Changes?
|
||
|
v-card-text
|
||
|
.body-2 You have unsaved changes. Are you sure you want to leave the editor and discard any modifications you made since the last save?
|
||
|
v-card-chin
|
||
|
v-spacer
|
||
|
v-btn(flat, @click='isShown = false') Cancel
|
||
|
v-btn(color='red', @click='discard', dark) Discard Changes
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
|
||
|
export default {
|
||
|
props: {
|
||
|
value: {
|
||
|
type: Boolean,
|
||
|
default: false
|
||
|
}
|
||
|
},
|
||
|
data() {
|
||
|
return { }
|
||
|
},
|
||
|
computed: {
|
||
|
isShown: {
|
||
|
get() { return this.value },
|
||
|
set(val) { this.$emit('input', val) }
|
||
|
}
|
||
|
},
|
||
|
methods: {
|
||
|
async discard() {
|
||
|
this.isShown = false
|
||
|
this.$emit('discard', true)
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
</script>
|