Hopefully you enjoy this project / crash course with NuxtJS! If you do, be sure to drop a like. Would you want to see more videos/projects using this framework? Let me know down in the comments!
Your contents are always in the top class and this one is also. Currently, I'm struggling with Vue, and after that, I wanna learn Nuxt. But I can't wait and wanna watch this crash course now. Thanks, John, thank you so much.
Compared to traditional Vue, I think it’s definitely worth using with all the bells and whistles that come out of the box when using this framework! Appreciate you watching, Josh!
Been waiting for this one! And boy was it worth it! Thanks for putting this together. I've decided to return the favor and i'll support the channel for the foreseeable future ;)
I appreciate your guidance. it was great. By the way, can you show me how to set up keyboard shortcuts! It's at the 29:17 minute mark. It's like you enter a div. hero will spawn . Once again I appreciate your guidance to Nuxt beginners like me!
I appreciate that! I believe you might be referring to a vscode setting / extensions called Emmett. It allows for short hands to be created for certain tags etc.
Nice video! Thanks for the effort. I hope to see some full stack apps with crud operations etc. Your Channel is one of the best for VueJS devs like us so keep it up and write history, I will support you for that. 😁
Thanks for the video... But I have 1 question on 45:13 You iterate over an array and push them into local ... Why not just assign them to local like this this.movies = result.data.results
Thanks for your nuxt crash course video. Would you please make another video on Nuxt SEO like adding a sitemap, google analytics and google search console with live nuxt application. Moreover, also adding canonical URLs in the NUXT application. Thanks
npm install --save-dev sass sass-loader@10 fibers. This thing causes the problem. When I try to add a CSS file instead of SCSS(without installing sass and sass-loader), everything works fine. Got any fixes to add SCSS?? Any help would be appreciatable.
@@JohnKomarnicki Just to make it clear for future readers, if you wanted to "alter/customize" the data, that you recieved back from the response, you would do the foreach way.
hi, just wanted to say that i really enjoyed your crash course. just two things : a) when you added keep-alive in the layout. the individual movie page stopped getting updated when adding changes to the code. b) can i make a suggestion for the next video ) ? turn this project into a pwa )
Hello, while extending the default layout I am getting this messege repeatedly "Component name "default" should always be multi-word", how to solve this?
Nice job, i follow your tutoriel and I deploy my own app on heroku but when i reload my page with dynamical id, fetch is not called. How do you resolved this ? thanks so much
@@JohnKomarnicki finally it's good. I think this problem came from the fact that the data management is locally and not from a real server like yours. again, thank for your great video
Hopefully you enjoy this project / crash course with NuxtJS! If you do, be sure to drop a like. Would you want to see more videos/projects using this framework? Let me know down in the comments!
Hell yes!! I’d love to see more Nuxt vids!
Sure. More Nuxt js videos please, out there either free or paid is hard to find a good content like yours.
Can you do Django + Nuxt ?
Your contents are always in the top class and this one is also. Currently, I'm struggling with Vue, and after that, I wanna learn Nuxt. But I can't wait and wanna watch this crash course now. Thanks, John, thank you so much.
I appreciate it!
This is my first time using NuxtJS and it's pretty nice. Thanks for this project!
Compared to traditional Vue, I think it’s definitely worth using with all the bells and whistles that come out of the box when using this framework! Appreciate you watching, Josh!
@@JohnKomarnicki Yeah. I agree. I'll be using this framework again due to those reasons and no problem!
cannot read properties of undefined (reading 'pending') nuxtjs having this error message when trying to open a single movie at 1: 28:18
such a cool episode about nuxtjs, your explanation is super easy to understand for a foreigner like me. Thanks a lot
Glad to hear! Thanks for watching!
Next JS please, best tutorior for me 🥰 so clean and easy to understand
Been waiting for this one! And boy was it worth it! Thanks for putting this together. I've decided to return the favor and i'll support the channel for the foreseeable future ;)
Really appreciate it Luuk! Thank you so much for the support!
@@JohnKomarnicki no problem you deserve it🤟🏻
Wuhoo! Finally, nuxt project. Awesome. Thanks👍🏻🤩
Enjoy! :)
Best Nuxt tutorial on TH-cam.
Really helped me a lot.
Appreciate that! 😀
Been waiting for Nuxtjs projects for ages haha, please could you do more nuxtjs and vuejs projects? hanks man!
John you are amazing, I like your videos. Great!
I really appreciate it :)
You awesom, men! Very cool and easy. Now I have midnight but I sit and watch it.
I appreciate it, thanks for watching :)
I love you man as a developer) You helped me to improve my Vue skills) I don't know English but I can understand you...
Glad I can help! :)
Thank you for the amazing tutorial! I would love to see more projects using nuxt
More to come!
I appreciate your guidance. it was great.
By the way, can you show me how to set up keyboard shortcuts!
It's at the 29:17 minute mark. It's like you enter a div. hero will spawn .
Once again I appreciate your guidance to Nuxt beginners like me!
I appreciate that! I believe you might be referring to a vscode setting / extensions called Emmett. It allows for short hands to be created for certain tags etc.
@@JohnKomarnicki 🥰 O
k. It was great. Thank you so much ^^
You're a Lifesaver Sir. More of the same please.
Nice video! Thanks for the effort. I hope to see some full stack apps with crud operations etc.
Your Channel is one of the best for VueJS devs like us so keep it up and write history, I will support you for that. 😁
Much appreciated!! :)
This is such an amazing course! Thank you so much!
🙌
need more projects on NUXT like this!!
I agree! I really enjoyed creating this project with Nuxt. More to come soon!
thanks a lot man, I really need this kind of course
Thanks you so much for your work, and it's really helpful. Really appreciated for this.
I appreciate it, thanks for watching 😀
More Nuxt build please 🙌
More to come soon :)
Another great project. I like that you cover a lot of info on whatever technology you're using. Thanks!
Thanks Bob, I appreciate it. Glad you enjoyed the project 😀
Thanks for the video...
But I have 1 question on 45:13 You iterate over an array and push them into local ... Why not just assign them to local like this
this.movies = result.data.results
Yep, you can do that. Especially in this case where wanna use all the data.
Thanks for your nuxt crash course video. Would you please make another video on Nuxt SEO like adding a sitemap, google analytics and google search console with live nuxt application. Moreover, also adding canonical URLs in the NUXT application. Thanks
@John Komarnicki Please help me, I am stuck @ 19:52. Assertion failed, after making changes to nuxt.config.js
npm install --save-dev sass sass-loader@10 fibers. This thing causes the problem. When I try to add a CSS file instead of SCSS(without installing sass and sass-loader), everything works fine. Got any fixes to add SCSS?? Any help would be appreciatable.
Thanks bro, very nice tutorial. Also very eastern europe family, I like it :D
Thank you 😁
At 45:33, why run a foreach and not just do this.movies = result.data.results?
In this case you could, since we are getting all the data back from the results!
@@JohnKomarnicki Just to make it clear for future readers, if you wanted to "alter/customize" the data, that you recieved back from the response, you would do the foreach way.
Nice job!! , can we have another project nuxt but with typscript implementation ?
quick question.. why did you refrence images with ./ instead of ~ as is shown on nuxt documentation?
Nice video. Can you upgrade into latest nuxt version? Thanks
amazing contents, I've just subscribed.. and like it.
Thank you! Appreciate it :)
hi, just wanted to say that i really enjoyed your crash course. just two things :
a) when you added keep-alive in the layout. the individual movie page stopped getting updated when adding changes to the code.
b) can i make a suggestion for the next video ) ? turn this project into a pwa )
nice ilove it , i hope can see new project nuxjs from u
Of course! Definitely more in the future!
thank you so much John, could you make more nuxtjs clone project please!!!
Yes, definitely will have more projects with nuxt!
Can you create pagination for this project ?
You video was greated
Nice one thanks
Thank you so much ♥️♥️❤️🧡💛💚💙🤍💜💜🤎🖤💘
:)
is there any blog api?
I want to use blog.
Amazing !
Thanks!
Hello, while extending the default layout I am getting this messege repeatedly "Component name "default" should always be multi-word", how to solve this?
This has to due to an update within the framework from the time this video was uploaded. The name just simply needs to be multi word. ie: HomeView
Please make crud operation using vue 3 composition api and firebase
Nice job, i follow your tutoriel and I deploy my own app on heroku but when i reload my page with dynamical id, fetch is not called. How do you resolved this ? thanks so much
It’s hard to say without seeing your code
@@JohnKomarnicki finally it's good. I think this problem came from the fact that the data management is locally and not from a real server like yours. again, thank for your great video
thank you...
Please make more clone using vuejs express
I wish watch your netflix clone deploying using nuxt js
this is nuxt js 3 tutorial?
This is nuxt 2. I’ll have a nuxt 3 tutorial coming soon!
@@JohnKomarnicki we're still waiting ooo... Thanks
thank you so much
Welcome!
bro how i can make a infinite scroll of movies ? with this api?
Muchas gracias
Can it be made without using Nuxt JS? A lot of love from India.
Yes, you could!
@@JohnKomarnicki How 😎?
I have a question. Could you replace the v-if with v-if="movie.title.includes(searchInput)" at 1:12:50 and not fetch the data again?
Possibly, i think that would work!
nuxt 3 is out
I seen! Exicted to create a video using it!
@@JohnKomarnicki Please make a video soon on NUXT 3.
Next one should be Build and Deploy Amazon Clone with Vue JS .
Tailwind CSS would have probably been a better choice than sass.
Porobably! I’ve been utilizing tailwind more recently in my projects / tutorials on the channel
Looks like they changed the setup in the update completely different ..bummer
I'll be creating an updated Nuxt 3 crash course soon
Build and Deploy Netflix Clone with Vue JS
Awesome video! I love these Nuxt projects!
I’m glad to hear that! Thanks for watching