how to solve unexpected side effect in computed function? please help me!
@malamhari_4 жыл бұрын
IT'S HERE!
@josbexerr51663 жыл бұрын
Excelente mister tyler...... saludos de los andes peruanos
@Tsiode3 жыл бұрын
I tried to reproduce your code for practice but cant manage to get incomelist to be displayed. Followed the video multiple times and even code diff-ed and still nothing. I am getting Unexpected side effect in computed function :/
@linghaoli2093 жыл бұрын
same issue
@petipois283 жыл бұрын
made this using vite - great fun thanks
@snowiedigga3 жыл бұрын
Thanks for this video!
@TylerPotts3 жыл бұрын
Glad it was helpful!
@farhadbaloch54984 жыл бұрын
Thanks man ! Your videos are really helpful 🖤
@張家銓-d2g4 жыл бұрын
You are the best.
@TylerPotts4 жыл бұрын
Thank you! :D
@Frondlock4 жыл бұрын
that's cool man! I wonder: what tools or tutorial you made maybe should I use if I want to build a very similar app to this... but that allows me to save the data on a server so that I can, for example, use as PWA on my phone but also on my browser on my desktop? That's the skill part I'm missing in all this
@Vikesh073 жыл бұрын
Great explanation... keep it up 👍🏽
@TylerPotts3 жыл бұрын
Thanks, will do!
@hamzalorenzo48573 жыл бұрын
Hi tayler what is the name of the theme you are using and thanks for your tutos
@nourigadjanibrahim3 жыл бұрын
Explication claire good
@markgoproductions2 жыл бұрын
(@vue/cli 5.0.4) Couldnt get Header to show up -- Until I defined components in App.vue section, under export default { , above setup() { components: { Header },
@theluckylad36702 жыл бұрын
My man saved my from crisis. Thanks dude
@herrdesai68533 жыл бұрын
hi i am having trouble with thw formatted date part . it shown Nan.Nan.Nan
@saurabhhchavan4 жыл бұрын
Thanks man🙌 really helpful videos ❤️
@user-rd3jw7pv7i2 жыл бұрын
thank you i love you
@TylerPotts2 жыл бұрын
No thank you for watching! :D ❤
@imRubii Жыл бұрын
Thanks for the tutorial. I wonder how to generate a template by typing `vue`.
@Chukwudubem_0110 ай бұрын
Hey tayler, nice course here but I'm having error displaying the IncomeItem i keep getting thjs error "cannot read property of undefined (reading 'income'). Pls do reply I've tried everything to get pass this error but i just can't. Pls.
@rangabharath42534 жыл бұрын
awesome
@peakacode62523 жыл бұрын
Hi, Guys. I have followed the video and my code seems to work fine until I noticed that when selecting a day date like 31 it always display the day date 1 of the following month. Any help on resolving this issue please.
@dimitrisandroid64834 жыл бұрын
Thank you!
@TylerPotts4 жыл бұрын
No, Thank you! :)
@dimitrisandroid64834 жыл бұрын
@@TylerPotts :D
@MaxProgramming4 жыл бұрын
You are so active in posting videos. I don't get much time to create those mang projects 😟
@TylerPotts4 жыл бұрын
Pick your favourites! When I run out of content or burnout you'll have time to catch-up 😂
@MaxProgramming4 жыл бұрын
@@TylerPotts I actually don't get anay ideas because of my school. That's also important. Thanks for the tip! 😊
@ZTF6663 жыл бұрын
nice !
@TylerPotts3 жыл бұрын
Thanks!
@samratbhaware4044 жыл бұрын
Please Make one More big tutorial On Vue.js
@TylerPotts4 жыл бұрын
More vue is coming!
@Jankee1873 жыл бұрын
Hej Bro your git version is not working after yarn serve :/ a lot of issues
@parthteli90393 жыл бұрын
Which database is being used here ? Thanks
@timtitus78614 жыл бұрын
I'm curious what your personal opinion is on the benefits of the composition API over just Vue 2 + Vuex. Could you outline how you would use advantages of the composition API together with Vuex? Perhaps the Vuex state could be limited to Axios-related data, and anything else could be done in the setup function? So far, I'm not really seeing the gains in adding more verbose, and in my opinion more difficult to read, code.
@TylerPotts4 жыл бұрын
I think I'll do a video on this as a lot of people have asked for it...
@mohamedannajar31404 жыл бұрын
Hi tayler I don't know why I get this warning : export 'computed' was not found in 'vue' and export 'reactive' was not found in 'vue' , thank u
@TylerPotts4 жыл бұрын
Looks like you're not using Vue 3
@mohamedannajar31404 жыл бұрын
@@TylerPotts yeh I guess that's the problem thank you Tayler thank you so much
@aram56423 жыл бұрын
I like the way you pronounce vie: is it phew js? ;-)
@soojin56572 жыл бұрын
If you have a troble "Failed to resolve component: Header" change the code below [before] setup (){ return { Header } }, [After] components: { Header },
@JORGEMARTINEZ-ho4wp4 жыл бұрын
Such an accent! Haha great tutorial btw
@TylerPotts4 жыл бұрын
Thank you! 😃
@blaaarp4u3 жыл бұрын
you shouldn't return component from setup(), only object/functions references
@TylerPotts3 жыл бұрын
Thanks for the tip, where would you return the components? Using, the options api?
@evance24323 жыл бұрын
@@TylerPotts In my case it doesn't work - I had a similar issue in one of your tutorial video and I made my search all over the web but I didn't find any solution. But it works fine with me when I add it in Components: {} - underneath the setup() function