Fast and concrete. Just what any person would like to find when typing "VUE Router". Thanks for this video.
@飘洋黄2 жыл бұрын
I think this is the best Vue Router tutorial, simple and clear! No one thinks I'm wrong, right?
@nikhiljugdan7244 жыл бұрын
Hands Down the best video on Vue Routing
@Romeo-vt8hq3 жыл бұрын
Finally a nice explanation and amazing American accent.
@utsavchawla99835 жыл бұрын
Hi, amazing explanation and perfect speed. Direct to the point. Thanks.
@clickadelic76814 жыл бұрын
On point, perfect speed and background info for learners.
@BrahmandnayakIndia4 жыл бұрын
So simply you explain so complex thing Sir.. really Thank you very much..
@Patrity4 жыл бұрын
How can the router be used for links without the '#'? Referring people to links such as 'mysite.com/#/join' is not that appealing.
@adriatic1236 жыл бұрын
Actually a very good lecture, this guy has knowledge and a talent for transfering knowledge. I only disagree on Vue simplicity. If you want to use more advanced features things will become pretty complicated pretty fast.
@ut99horus3 жыл бұрын
Very useful and insightful, thanks!
@rohityawalkar70734 жыл бұрын
Very good explanation. Thank you.
@ismaelosvaldocedanovargas67375 жыл бұрын
Thank you for sharing this! Right to the point and understandable
@JkeyKong4 жыл бұрын
This dependency was not found: * @components/HelloWorld in ./src/router/index.js where do I put this? package.json?
@JkeyKong4 жыл бұрын
This dependency was not found: * @/components/HelloWorld in ./src/router/index.js To install it, you can run: npm install --save @/components/HelloWorld
@samueltorres24853 жыл бұрын
Very good video. More?
@sacros54846 жыл бұрын
Hi. I have a doubt. After i click on friends link, whenever i point to other links, eg contact, instead of going to localhost:8080/#/contact, it is going to localhost:8080/#/friends/1/2/contact. Please help.
@sacros54846 жыл бұрын
ok, i got it. Just appended / before every route like this:
@yu-linchung57715 жыл бұрын
@@sacros5484 I just ran into this problem and thanks for your help!
@sacros54845 жыл бұрын
@@yu-linchung5771 :)
@ojdgaf6 жыл бұрын
great tutorials, thank you!
@Kryonnnn4 жыл бұрын
if i do "component: () => import('../componentsContact.vue')" is the same? instead of "component: Contact"
@mustahsinulmoulasiam16616 жыл бұрын
Thanks for the video. How can I configure the app to enable multi-page-mode? where each html page will have separate vue id
@Vovk1017 жыл бұрын
Good rhythm. No need speed up video. What back-end platform could you recommend for vue apps? Best pair?
@adriatic1236 жыл бұрын
Node is best match, but PHP is also ok, where PHP pages are 'invisible' and act only as an API to the server routes and connection to database.
@Excludeinfinity6 жыл бұрын
Not sure if you've gotten an answer to this - but Firebase is a great back-end platform for vue. See more here: firebase.google.com
@peristiloperis77895 жыл бұрын
Why do your files have a vue extension? Is it like a js extension?
@ahuman19264 жыл бұрын
Better than others
@mickeymegabyte7 жыл бұрын
why have you given your route objects a name property? does this get used at all? thanks for the series - i picked up some handy tips 😊
@snow173127 жыл бұрын
You can reference your route by the name property rather than the url when linked: router.vuejs.org/en/essentials/named-routes.html
@HardRusty3 жыл бұрын
thank for the video
@dasatraMedia5 жыл бұрын
How do I put Axios request in each vue?
@BigPekka6 жыл бұрын
Hi ! Please, how to use that @ alias ?
@gazitaufiq64334 жыл бұрын
It's an alias for 'src', you will find it in your build/webpack.base.conf.js file. It boggled me too, at first I thought it meant 'root'. Hard to find an answer in Google, but I found an article on this. www.jerriepelser.com/blog/til-at-symbol-javascript-import/