You saved my day...there's nothing more beautiful than doing for yourself what you would have otherwise done with plugin. This way I caneasily adapt it to my project. Thanks a ton
You are awesome, @john!! I have looked all throughout github and various tutorials to not reinvent the wheel. No luck. All of the examples were too out of date (vue 2) or were using a css template which muddied the waters. Your video tut was on point! And it did not take me very long to transform it into a vue 3 tag! Please keep teaching.
Thanks for the video John! I suggest you to create shorts of some important part of the video just to please YT algorithm for the reach (in free time, don't overwork).
Awesome content John! Could you do the same for a responsive navbar? Firebase tutorials are great and not much content on Vue and Firebase around, I think that would be great too! Keep it up!
I do have a video on a responsive navigation menu using the options API. In the future, I could redo that using the options api! But I do have more videos with vue 3 and fire base coming up soon!
ultimate tutorial, more than I required and best part is explaining the css. I did not know sass but thanks to you, i learnt a little now. but how to close modal if i move cursor outside the modal box?
Hey thank you so much, I tried but was not able to understand how to open a modal component from parent component but you literally explained it in a minute. Keep doing good and stay healthy and happy PS: can you make a vue 3 project with script setup tag (composition api) and state management using vuex4 or Pinia whatever you prefer with tailwind it would be awesome
Thanks mounir! Here is a link to the Vue docs, which would probably do a much better job at explaining it then i could here! router.vuejs.org/guide/essentials/history-mode.html#example-server-configurations
when i import the Modal to my parent component, the child component is shown in the script (Modal gets green) and not in the template (Modal is shown as plain text ). As a result i cant reuse the child component. Can someone help me plz
This is very nice video Jan. I really like it. But two main imperfections can cause problems with this approach... or correct me if i'm wrong :) 1. Modal only emits close action and changing it's visibility is done in parent component. So as I understand, you will have to copy/paste "close" function in every component containing Modal 2. What if one component will have two (or more) different Modals?
1. Not exactly. The $emit function exists on modal component. Therefore, you'll just need to listen to the emit in the component where you are using that modal component. You would have to have a toggle function in each component you use, which is not uncommon to do. 2. There is a few things you can do here. Here is how i would do this, but there is other ways. You could just simply have two modals, and just created different data values hide/show modal. Such as "modal1" & "modal2", Now with this, you would have two different functions, or create a function that takes an argument to properly show / hide the correct modal. Hopefully that makes sense.
Can you make video about reusability composition api ? Ex: we have a form that include 2 fields(all fields are select - option). So, How can I split these 2 fields for reuse?
Is it worth to learn Vue when I'm changing from backend to full frontend after two years? Not sure If I get a job with that framework, especially in Poland.
Vue, in my opinion has the easiest learning curve coming from traditional/vanilla js compared to Angular or React. Vue, is certainly at the moment is not as popular as react, but it has been gaining momentum over the past several years. I personally enjoy it a lot, but everyone has different reasons/perspectives to choosing a framework. You'd have to evaluate the current job market within your area, then make your choice!
Yesterday, I was thinking where is my favorite RUclipsr why he is not uploading new video and here it is
Thank you man
You saved my day...there's nothing more beautiful than doing for yourself what you would have otherwise done with plugin. This way I caneasily adapt it to my project. Thanks a ton
That’s awesome, glad to hear this was helpful!
Thank you so much for the video. One of my favourite teachers on youtube. Keep up the great work.
Thank you, Quõc!
You are awesome, @john!! I have looked all throughout github and various tutorials to not reinvent the wheel. No luck. All of the examples were too out of date (vue 2) or were using a css template which muddied the waters. Your video tut was on point! And it did not take me very long to transform it into a vue 3 tag! Please keep teaching.
Thanks for the video John!
I suggest you to create shorts of some important part of the video just to please YT algorithm for the reach (in free time, don't overwork).
I’ll have to consider that! Thank you for the tip!
Awesome video John. Very informative as always!
Thanks Luuk!
I really want to see a full stack graphQL server with Vue and apollo client project and some more real world projects if you have time!!
Definitely have some more bigger/practical projects coming up soon!
You are awesome. Thanks for all the amazing contents and stunning projects.🤗
Thank you, much appreciated 😄
It's refreshing to explore a channel with tutorials using the latest versions of frameworks. Tired of Vue 2 tutorials everywhere
Awesome content John! Could you do the same for a responsive navbar? Firebase tutorials are great and not much content on Vue and Firebase around, I think that would be great too! Keep it up!
I do have a video on a responsive navigation menu using the options API. In the future, I could redo that using the options api! But I do have more videos with vue 3 and fire base coming up soon!
Love your Vue videos!
Thank you Lars, I appreciate it!
very well explained, thank you
ultimate tutorial, more than I required and best part is explaining the css. I did not know sass but thanks to you, i learnt a little now. but how to close modal if i move cursor outside the modal box?
Works very well, thank you very much!
Glad it helped!
Hey thank you so much, I tried but was not able to understand how to open a modal component from parent component but you literally explained it in a minute.
Keep doing good and stay healthy and happy
PS: can you make a vue 3 project with script setup tag (composition api) and state management using vuex4 or Pinia whatever you prefer with tailwind it would be awesome
Glad it could help! I'll have a slightly larger project out soon!
동영상강의 잘 시청하였습니다. 시간이 되신다면, slot 관련해서 강의를 하나 부탁드립니다. 감사합니다.
You are exactly what I want
What extensions were you using ?
Thanks. John. I greatly appreciate your efforts. What does router history mode do?
Thanks mounir! Here is a link to the Vue docs, which would probably do a much better job at explaining it then i could here! router.vuejs.org/guide/essentials/history-mode.html#example-server-configurations
@@JohnKomarnicki Thanks again. John for the help.
when i import the Modal to my parent component, the child component is shown in the script (Modal gets green) and not in the template (Modal is shown as plain text ). As a result i cant reuse the child component.
Can someone help me plz
Thank you so much.
Thank you for watching!
This is very nice video Jan. I really like it.
But two main imperfections can cause problems with this approach... or correct me if i'm wrong :)
1. Modal only emits close action and changing it's visibility is done in parent component. So as I understand, you will have to copy/paste "close" function in every component containing Modal
2. What if one component will have two (or more) different Modals?
1. Not exactly. The $emit function exists on modal component. Therefore, you'll just need to listen to the emit in the component where you are using that modal component. You would have to have a toggle function in each component you use, which is not uncommon to do.
2. There is a few things you can do here. Here is how i would do this, but there is other ways. You could just simply have two modals, and just created different data values hide/show modal. Such as "modal1" & "modal2", Now with this, you would have two different functions, or create a function that takes an argument to properly show / hide the correct modal. Hopefully that makes sense.
Can you make video about reusability composition api ?
Ex: we have a form that include 2 fields(all fields are select - option). So, How can I split these 2 fields for reuse?
Ah like a reusable input component?
@@JohnKomarnicki yes, but it has different methods
Is it worth to learn Vue when I'm changing from backend to full frontend after two years? Not sure If I get a job with that framework, especially in Poland.
Vue, in my opinion has the easiest learning curve coming from traditional/vanilla js compared to Angular or React. Vue, is certainly at the moment is not as popular as react, but it has been gaining momentum over the past several years.
I personally enjoy it a lot, but everyone has different reasons/perspectives to choosing a framework. You'd have to evaluate the current job market within your area, then make your choice!
@@JohnKomarnicki Thanks for an answer.
Great content btw, the Github repo link is not working,
What is wrong with it? I just clicked on it, and it was working for me.
Sorry, it appears it was on private. It is on public now :)
@@JohnKomarnicki thanks 🙏
Thanks!
thank you
Your welcome!
Thanks
i love you
I prefer build modal without boolean v-model
I’m always up for different approaches, how would you do it?