mirror of
https://github.com/nuxt/nuxt.git
synced 2024-12-02 02:17:15 +00:00
1a7b570c82
Co-authored-by: Pooya Parsa <pyapar@gmail.com>
19 lines
292 B
Vue
19 lines
292 B
Vue
<template>
|
|
<div>
|
|
<strong>Custom layout</strong>
|
|
Header slot:
|
|
<slot name="header">
|
|
Default slot content for <code>Custom</code> layout
|
|
</slot>
|
|
<slot />
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
created () {
|
|
console.log('layout created')
|
|
}
|
|
}
|
|
</script>
|