suppose the pages
directory of nuxt
project has index.vue
, home.vue
, admin.vue
pages.
visit localhost:3000/
, and Network
in the console will load admin
together. Is there any way not to load it? Thank you. Thank you
suppose the pages
directory of nuxt
project has index.vue
, home.vue
, admin.vue
pages.
visit localhost:3000/
, and Network
in the console will load admin
together. Is there any way not to load it? Thank you. Thank you
it is loaded according to the directory and file name. There is no need to move the underlying code. Deletion is the best solution. What's the point of exposing a route but you don't want to visit it?
start a 3001 service on a port
Previous: How to draw a title? with the flot plug-in of jquery
Next: Ask Zhihu H5 how to avoid the wrong URL prompt of safari in the process of waking up APP?
the default route is app.use (nuxt.render); the display effect is 127.0.0.1virtual 3000 but I want 127.0.0.1:3000 admin how should I change it? app.use ( admin ,nuxt.render) will report the file under _ nuxt if it is used in this way. how...
problem description I m going to get the token parameters stored in cookie in middleware No problem was found in the local test, but after uploading to the official server for a period of time, I found that some users had the same token . after ch...