Add DrupalBlock component

This commit is contained in:
Oliver Davies 2018-12-05 20:52:51 +00:00
parent 2d53250ccd
commit c0880191e6
2 changed files with 12 additions and 3 deletions

View file

@ -0,0 +1,5 @@
<template>
<div class="widget">
<slot></slot>
</div>
</template>

View file

@ -39,7 +39,7 @@
</div>
<div class="w-full md:w-1/3 lg:w-1/4 flex-none md:px-6">
<div class="widget">
<drupal-block>
<h2 class="font-serif font-normal text-base text-grey-darkest border-b border-solid border-grey-light mb-3">Search</h2>
<div>
@ -51,7 +51,7 @@
</button>
</form>
</div>
</div>
</drupal-block>
</div>
</div>
</div>
@ -79,10 +79,14 @@
</template>
<script>
import DrupalBlock from './DrupalBlock.vue'
import MainMenu from './MainMenu.vue';
export default {
components: { MainMenu },
components: {
DrupalBlock,
MainMenu,
},
props: {
title: {