2017-11-06 04:11:26 +00:00
|
|
|
<template lang="pug">
|
|
|
|
v-dialog(v-model='show', lazy, absolute, persistent, max-width='800', @keydown.esc='close()')
|
2017-11-09 10:33:55 +00:00
|
|
|
v-card
|
|
|
|
v-layout(row, wrap)
|
|
|
|
v-flex(xs6, offset-xs2) Blabla
|
|
|
|
v-expansion-panel(popout)
|
|
|
|
v-expansion-panel-content(ripple)
|
|
|
|
.entry-title(slot='header') Advanced options
|
|
|
|
v-card Blabla
|
2017-11-06 04:11:26 +00:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
export default {
|
|
|
|
computed: {
|
|
|
|
show: {
|
|
|
|
get () {
|
|
|
|
return this.$store.state.mal.form
|
|
|
|
},
|
|
|
|
set (bool) {
|
|
|
|
this.$store.commit('mal/showForm', bool)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
close () {
|
|
|
|
this.$store.commit('mal/showForm', false)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|