You are viewing a single comment's thread from:

RE: Nuxt开发指南

in #starnote3 days ago
layouts -> default.vue, <slot/>可以将其它页面插入
eg:
<template>
    <div class="body">
        <NavBar/>      
        <main class="containerX"> 
            <slot/>
        </main>
    </div>
</template>

//指定页面布局
layouts -> login.vue
//pages -> login.vue
definePageMeta({
    layout:"login",
    middleware:["only-visitor"]
})
另外,命名不能使用小驼峰的方法,要使用 `-`