ページのセクション内などが表示されない問題を修正 (#6746)
This commit is contained in:
		@@ -25,7 +25,7 @@
 | 
			
		||||
</template>
 | 
			
		||||
 | 
			
		||||
<script lang="ts">
 | 
			
		||||
import { defineComponent } from 'vue';
 | 
			
		||||
import { defineComponent, defineAsyncComponent } from 'vue';
 | 
			
		||||
import { v4 as uuid } from 'uuid';
 | 
			
		||||
import { faPlus, faQuestion } from '@fortawesome/free-solid-svg-icons';
 | 
			
		||||
import XContainer from '../page-editor.container.vue';
 | 
			
		||||
@@ -34,7 +34,8 @@ import * as os from '@/os';
 | 
			
		||||
 | 
			
		||||
export default defineComponent({
 | 
			
		||||
	components: {
 | 
			
		||||
		XContainer, MkSelect
 | 
			
		||||
		XContainer, MkSelect,
 | 
			
		||||
		XBlocks: defineAsyncComponent(() => import('../page-editor.blocks.vue')),
 | 
			
		||||
	},
 | 
			
		||||
 | 
			
		||||
	inject: ['getPageBlockList'],
 | 
			
		||||
@@ -54,10 +55,6 @@ export default defineComponent({
 | 
			
		||||
		};
 | 
			
		||||
	},
 | 
			
		||||
 | 
			
		||||
	beforeCreate() {
 | 
			
		||||
		this.$options.components.XBlocks = require('../page-editor.blocks.vue').default
 | 
			
		||||
	},
 | 
			
		||||
 | 
			
		||||
	created() {
 | 
			
		||||
		if (this.value.children == null) this.value.children = [];
 | 
			
		||||
		if (this.value.var === undefined) this.value.var = null;
 | 
			
		||||
 
 | 
			
		||||
@@ -17,7 +17,7 @@
 | 
			
		||||
</template>
 | 
			
		||||
 | 
			
		||||
<script lang="ts">
 | 
			
		||||
import { defineComponent } from 'vue';
 | 
			
		||||
import { defineComponent, defineAsyncComponent } from 'vue';
 | 
			
		||||
import { v4 as uuid } from 'uuid';
 | 
			
		||||
import { faPlus, faPencilAlt } from '@fortawesome/free-solid-svg-icons';
 | 
			
		||||
import { faStickyNote } from '@fortawesome/free-regular-svg-icons';
 | 
			
		||||
@@ -26,7 +26,8 @@ import * as os from '@/os';
 | 
			
		||||
 | 
			
		||||
export default defineComponent({
 | 
			
		||||
	components: {
 | 
			
		||||
		XContainer
 | 
			
		||||
		XContainer,
 | 
			
		||||
		XBlocks: defineAsyncComponent(() => import('../page-editor.blocks.vue')),
 | 
			
		||||
	},
 | 
			
		||||
 | 
			
		||||
	inject: ['getPageBlockList'],
 | 
			
		||||
@@ -46,10 +47,6 @@ export default defineComponent({
 | 
			
		||||
		};
 | 
			
		||||
	},
 | 
			
		||||
 | 
			
		||||
	beforeCreate() {
 | 
			
		||||
		this.$options.components.XBlocks = require('../page-editor.blocks.vue').default
 | 
			
		||||
	},
 | 
			
		||||
 | 
			
		||||
	created() {
 | 
			
		||||
		if (this.value.title == null) this.value.title = null;
 | 
			
		||||
		if (this.value.children == null) this.value.children = [];
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user