pages
| index.vue
| posts
| | index.vue
| | _post.vuenuxt generate в папке posts получаю один index.htmlnuxt.config.jsgenerate: {
routes: async function () {
/* получить список постов, у которых есть свойство postname */
const { data: posts } = await axios.get('https://mydomain/posts');
/* вернуть массив адресов вида '/posts/%postname%' */
return posts.map(u => `/posts/${u.postname}`);
}
},