简体   繁体   中英

Nuxt nested url directory

I have this king od structure that should be binded to URLs:

/default/tree/index.vue -> URL: /default/tree
/default/tree/apple/index-vue -> URL: /default/tree/apple
/error/index.vue -> URL: /error
/login/index.vue -> URL: /login

However, I cannot access default/tree/apple, because NUXT gives me an error that This page could not be found

Any suggestions?

this folder structure should produce the URLs you want:

pages/
--| default/
----| tree/
------| index.vue (url: /default/tree)
------| apple.vue (url: /default/tree/apple)

read here to learn more:

nuxt file system routing

Your directory structure should be like that:

/default/tree/index.vue -> URL: /default/tree
/default/tree/index/apple.vue -> URL: /default/tree/apple

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM