File: //var/www/quadcode-jobs/resources/assets/js/blocks/BlockIside_Job_Item.vue
<template>
<!-- eslint-disable -->
<div class="block__body">
<a17-locale type="a17-textfield"
:attributes="{ label: 'Title', name: fieldName('title'), type: 'text', inStore: 'value' }"></a17-locale>
<a17-locale type="a17-wysiwyg"
:attributes="{ label: 'Description', name: fieldName('description'), options: {modules:{toolbar:[{header:[2,3,false]},'bold','italic','link',{list:'ordered'},{list:'bullet'}],syntax:false}}, editSource: true, inStore: 'value' }"></a17-locale>
</div>
</template>
<script>
import BlockMixin from '@/mixins/block'
export default {
mixins: [BlockMixin]
}
</script>