[Vuejs]-How to use different pages view on one url?

0👍

you should remember in nuxt all vue files inside Pages directory are components check the guide, and each file or directory you add there will create routes.

the easy way to succeed your demand is put the video page and content page with a proper name in components directory. Create a new file in pages it will contains in scripts the data call and template will contains the component selector, you can use a v-if or dinamic components for load the right component. and pass the data by props.

Leave a comment