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.
43 lines
988 B
43 lines
988 B
7 years ago
|
<template lang='pug'>
|
||
7 years ago
|
v-bottom-sheet(v-model='isShown', inset, persistent)
|
||
7 years ago
|
v-toolbar(color='blue-grey', flat)
|
||
|
v-icon(color='white') sort_by_alpha
|
||
7 years ago
|
v-toolbar-title.white--text Page Properties
|
||
7 years ago
|
v-spacer
|
||
7 years ago
|
v-btn(icon, dark, @click.native='close')
|
||
7 years ago
|
v-icon close
|
||
|
v-card.pa-3(tile)
|
||
|
v-card-text
|
||
|
v-form
|
||
7 years ago
|
v-text-field(label='Title', counter='255')
|
||
|
v-text-field(label='Short Description', counter='255')
|
||
|
v-select(label='Tags', chips, tags, deletable-chips)
|
||
|
v-text-field(label='Path', prefix='/', append-icon='folder')
|
||
7 years ago
|
v-card-actions
|
||
|
v-btn(color='green', dark) Save
|
||
7 years ago
|
v-btn(@click.native='close') Cancel
|
||
7 years ago
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
data() {
|
||
|
return {
|
||
7 years ago
|
isShown: false
|
||
|
}
|
||
|
},
|
||
|
mounted() {
|
||
|
this.isShown = true
|
||
|
},
|
||
|
methods: {
|
||
|
close() {
|
||
|
this.isShown = false
|
||
7 years ago
|
this.$parent.$parent.closeModal()
|
||
7 years ago
|
}
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style lang='scss'>
|
||
|
|
||
|
</style>
|