2018-02-11 05:20:17 +00:00
|
|
|
<template lang="pug">
|
2018-02-19 07:00:55 +00:00
|
|
|
.editor
|
|
|
|
editor-code
|
|
|
|
editorModalAccess(:is-opened='pageAccessDialog')
|
|
|
|
editorModalProperties(:is-opened='pagePropertiesDialog')
|
2018-02-11 05:20:17 +00:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
export default {
|
|
|
|
components: {
|
2018-02-19 07:00:55 +00:00
|
|
|
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
|
|
|
|
}
|
2018-02-11 05:20:17 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang='scss'>
|
|
|
|
|
|
|
|
</style>
|