简体   繁体   中英

Can I get from my nuxt.js project - list of all my potential routes?


Can I get from my nuxt.js project
- list of all my potential routes?
(all of my URL)

Your nuxt app will create a router which will include an Object with all routes available to your app. You can find the created router in your .nuxt folder if I am not mistaken.

Also, in your nuxt Config you have the router key, which allows you to customize the behavior of vue-router . Read more here: Vue-Router Documentation

You can access the router in components under this.$router . All generated routes are accessible at this.$router.options.routes .

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