feat: editor-modal-access UI + editor toolbar

This commit is contained in:
NGPixel
2018-02-19 02:00:55 -05:00
parent beb3fe128b
commit 218fe02e45
4 changed files with 88 additions and 19 deletions

View File

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