2 |
5 | {{ blok.headline }}
6 |
7 |
8 |
9 |
19 |
--------------------------------------------------------------------------------
/plugins/components.js:
--------------------------------------------------------------------------------
1 | import Vue from 'vue'
2 | import Page from '~/components/Page.vue'
3 | import Teaser from '~/components/Teaser.vue'
4 | import Grid from '~/components/Grid.vue'
5 | import Feature from '~/components/Feature.vue'
6 |
7 | Vue.component('page', Page)
8 | Vue.component('teaser', Teaser)
9 | Vue.component('grid', Grid)
10 | Vue.component('feature', Feature)
11 |
--------------------------------------------------------------------------------
/middleware/README.md:
--------------------------------------------------------------------------------
1 | # MIDDLEWARE
2 |
3 | **This directory is not required, you can delete it if you don't want to use it.**
4 |
5 | This directory contains your application middleware.
6 | Middleware let you define custom functions that can be run before rendering either a page or a group of pages.
7 |
8 | More information about the usage of this directory in [the documentation](https://nuxtjs.org/guide/routing#middleware).
9 |
--------------------------------------------------------------------------------
/components/Page.vue:
--------------------------------------------------------------------------------
1 |