Update new add page with new properties

This commit is contained in:
Ramon Wenger 2022-01-19 11:47:10 +01:00
parent 88f1db7bfc
commit 6bc6f5fa33
1 changed files with 3 additions and 19 deletions

View File

@ -102,44 +102,28 @@
<a class="button">Abbrechen</a>
</footer>
</div>
</div></template>
</div>
</template>
<script>
import Toggle from '@/components/ui/Toggle';
import ContentFormSection from '@/components/content-block-form/ContentFormSection';
import TextForm from '@/components/content-forms/TextForm';
import InputWithLabel from '@/components/ui/InputWithLabel';
import AddContentLink from '@/components/content-block-form/AddContentLink';
import ContentBlockElementChooserWidget from '@/components/content-forms/ContentBlockElementChooserWidget';
import ContentElement from '@/components/content-block-form/ContentElement';
export default {
components: {
ContentElement,
ContentBlockElementChooserWidget,
AddContentLink,
InputWithLabel,
TextForm,
ContentFormSection,
Toggle,
},
data: () => ({
val: '',
title: '',
blocks: [
{
id: 1,
type: 'content-block-element-chooser-widget',
},
{
id: 2,
type: 'content_list',
items: [
{
type: 'content-block-element-chooser-widget',
}
]
},
],
}),