2018-02-18 03:18:37 +00:00
|
|
|
<template lang='pug'>
|
2018-02-19 07:00:55 +00:00
|
|
|
v-bottom-sheet(v-model='isOpened', inset, persistent)
|
2018-02-18 03:18:37 +00:00
|
|
|
v-toolbar(color='blue-grey', flat)
|
|
|
|
v-icon(color='white') sort_by_alpha
|
2018-02-19 07:00:55 +00:00
|
|
|
v-toolbar-title.white--text Page Properties
|
2018-02-18 03:18:37 +00:00
|
|
|
v-spacer
|
2018-02-19 07:00:55 +00:00
|
|
|
v-btn(icon, dark, @click.native='$parent.pagePropertiesDialog = false')
|
2018-02-18 03:18:37 +00:00
|
|
|
v-icon close
|
|
|
|
v-card.pa-3(tile)
|
|
|
|
v-card-text
|
|
|
|
v-form
|
2018-02-18 05:52:52 +00:00
|
|
|
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')
|
2018-02-18 03:18:37 +00:00
|
|
|
v-card-actions
|
|
|
|
v-btn(color='green', dark) Save
|
2018-02-19 07:00:55 +00:00
|
|
|
v-btn(@click.native='$parent.pagePropertiesDialog = false') Cancel
|
2018-02-18 03:18:37 +00:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
export default {
|
|
|
|
props: {
|
|
|
|
isOpened: {
|
|
|
|
type: Boolean,
|
|
|
|
default: false
|
|
|
|
}
|
|
|
|
},
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang='scss'>
|
|
|
|
|
|
|
|
</style>
|