0👍
As far as I got your mean, you wanna generate static pages automatically, the best solution of that is a _slug
file, you can provide a _slug.vue file inside the root of pages directory
then pas the component name as a slug such as yourdomain.com/your components name
, you are able to access your slug name by this.$route.params.slug
then you can provide a route object in slug.vue file to assign your desired component to route based on your slug component name, refer to this document: https://nuxtjs.org/guide/routing/
Source:stackexchange.com