Skip to content

/layouts/empty.vue

Image of the component

This is an empty page layout without header and footer - used for the Sign-In App to save whitespace and by this make the Sign-In App easier to use

In order to use a different layout on a page the layout itself must be named:

vue
defineOptions({
  name: 'EmptyLayout'
})

An we need to add a directive to the page with a different layout below the template area:

vue
<route lang="yaml">
meta:
  layout: empty
</route>

Released under the MIT License.