Rename component to be more clear
This commit is contained in:
parent
b0520773ed
commit
9155b86451
|
|
@ -1,6 +1,6 @@
|
|||
<template>
|
||||
<div>
|
||||
<add-content></add-content>
|
||||
<add-content-button></add-content-button>
|
||||
|
||||
<div class="content-block" :class="specialClass">
|
||||
<h4>{{contentBlock.title}}</h4>
|
||||
|
|
@ -20,7 +20,7 @@
|
|||
import Task from '@/components/content-blocks/Task.vue';
|
||||
import ImageBlock from '@/components/content-blocks/ImageBlock.vue';
|
||||
import StudentEntry from '@/components/content-blocks/StudentEntry.vue';
|
||||
import AddContent from '@/components/AddContent';
|
||||
import AddContentButton from '@/components/AddContentButton';
|
||||
|
||||
export default {
|
||||
props: ['contentBlock'],
|
||||
|
|
@ -31,7 +31,7 @@
|
|||
'student_entry': StudentEntry,
|
||||
'image_block': ImageBlock,
|
||||
Task,
|
||||
AddContent
|
||||
AddContentButton
|
||||
},
|
||||
|
||||
computed: {
|
||||
|
|
|
|||
Loading…
Reference in New Issue