feat: editor-modal-access UI + editor toolbar
This commit is contained in:
@@ -1,11 +1,22 @@
|
||||
<template lang="pug">
|
||||
editor-code
|
||||
.editor
|
||||
editor-code
|
||||
editorModalAccess(:is-opened='pageAccessDialog')
|
||||
editorModalProperties(:is-opened='pagePropertiesDialog')
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
components: {
|
||||
editorCode: () => import(/* webpackChunkName: "editor" */ './editor-code.vue')
|
||||
editorCode: () => import(/* webpackChunkName: "editor-code" */ './editor-code.vue'),
|
||||
editorModalAccess: () => import(/* webpackChunkName: "editor-common" */ './editor-modal-access.vue'),
|
||||
editorModalProperties: () => import(/* webpackChunkName: "editor-common" */ './editor-modal-properties.vue')
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
pageAccessDialog: true,
|
||||
pagePropertiesDialog: false
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
Reference in New Issue
Block a user