[Vuejs]-How to set Nuxt dynamic route category page and content page

0👍

I think this structure makes what you want

pages/
--| work/
-----| index.vue
-----| _projectName.vue
-----| web-design.vue   --> and use route parameter to accessing type

And in _projectName.vue set the layout like this example

_projectName.vue

<script>
export default {
  layout: 'the-layout'

…..

Leave a comment