NuxtJSSPA 项目怎么处理不同的布局?

# Use the layout key in your pages components to define which layout to use:
# In this example, Nuxt.js will include the layouts/blog.vue file as a layout for this page component.
export default {
  layout: 'blog',
  // OR
  layout (context) {
    return 'blog'
  }
}

Refer: