editor-modal-document.vue 847 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. <template lang='pug'>
  2. v-bottom-sheet(v-model='isOpened', inset)
  3. v-toolbar(color='blue-grey', flat)
  4. v-icon(color='white') sort_by_alpha
  5. v-toolbar-title.white--text Document Properties
  6. v-spacer
  7. v-btn(icon, dark)
  8. v-icon close
  9. v-card.pa-3(tile)
  10. v-card-text
  11. v-form
  12. v-text-field(label='Title', counter='255')
  13. v-text-field(label='Short Description', counter='255')
  14. v-select(label='Tags', chips, tags, deletable-chips)
  15. v-text-field(label='Path', prefix='/', append-icon='folder')
  16. v-card-actions
  17. v-btn(color='green', dark) Save
  18. v-btn Cancel
  19. </template>
  20. <script>
  21. export default {
  22. props: {
  23. isOpened: {
  24. type: Boolean,
  25. default: false
  26. }
  27. },
  28. data() {
  29. return {
  30. }
  31. }
  32. }
  33. </script>
  34. <style lang='scss'>
  35. </style>