Can i use template in layout files?
[issue link]hi there,
I need add a vue template in layout files,
I did it in this way but my <navigation> template not display.
here’s my layout file
~/layouts/main.vue:
<template>
<div id="app">
<navigation></navigation>
<nuxt></nuxt>
</div>
</template>
<script>
/* eslint-disable no-unused-vars */
import navigation from '~/components/navigation.vue'
</script>