Vue.js Course for Beginners [2021 Tutorial]

แชร์
ฝัง
  • เผยแพร่เมื่อ 20 พ.ย. 2024

ความคิดเห็น • 498

  • @Bigman74066
    @Bigman74066 2 ปีที่แล้ว +34

    I like how you didn't edit out mistakes you made. This only adds to the learning experience. Great job! Tnx!

  • @TlNYDlCK
    @TlNYDlCK 2 ปีที่แล้ว +10

    To fix the icon issue in the ProductCard.vue class in the html tag you will want set the tag just under to be :class="class_type". So it will look like:
    And then in the scripts in the data function you'll want to add a class_type variable using a template literal with the class you want. So data() looks like:
    data () {
    return {
    quantity: 0,
    class_type: `icofont-10x icofont-${this.product.icon}`
    }
    }

  • @bonnyboet6613
    @bonnyboet6613 2 ปีที่แล้ว +15

    Thank you for this course! As a non-native English speaker I really appreciate your clear way of speaking and keeping to the main points. It made it really easy to understand.

  • @tthtlc
    @tthtlc 2 ปีที่แล้ว +5

    i find your way of teaching so exciting and catching my FULL attention all the time: making mistakes, showing the results of the mistakes, explaining it, and then correcting it, and continue,.....and repeating again.....every mistakes is different and it just makes me learn SO MUCH.

  • @MrSkme
    @MrSkme 2 ปีที่แล้ว +12

    If you want to try the splendid food app basic demo you have to delete node_modules and package-lock.json and run "npm install" in the terminal first. Then you can run "npm start".

    • @compeng5436
      @compeng5436 2 ปีที่แล้ว +1

      thanks mate, it helps!

    • @lorieldesamito3998
      @lorieldesamito3998 2 ปีที่แล้ว +1

      just running the npm install did it for me.
      i have no backgroud in node and had to do a little search for this to work.

    • @silvavadney2267
      @silvavadney2267 2 ปีที่แล้ว +2

      Thank So Much!!! Was struggling a lot with this part.. 😢

  • @rachelsensenig
    @rachelsensenig ปีที่แล้ว +9

    This was a great course - very clear. I liked being stepped through creating Vue on an HTML file up through creating an app using Vue CLI. I also appreciated being shown how to debug using the Vue dev tools. For those about to watch this video - make sure you have this on your browser before you start!

  • @jakebush8941
    @jakebush8941 2 ปีที่แล้ว +3

    This is the best video I have found for Vue 3. My company gives us full access to PluralSight and there's nothing even close to as good as this on there. WELL DONE.

  • @chopman83
    @chopman83 3 ปีที่แล้ว +127

    I'm really enjoying the course so far! However, you have a typo in your chapter listings. Components are listed as starting at 1:29:20, but it should be 29:20...it's causing the following chapters to be out of sync. Thanks, and keep up the good work!

  • @hilbillymnst1324
    @hilbillymnst1324 2 ปีที่แล้ว +1

    If they were explaining things at school that way, you'd catch thing way quicker. Simple but profound. Helluva tutorial.

  • @tomstock8634
    @tomstock8634 2 ปีที่แล้ว +70

    This lengthy tutorial was relaxing and very pleasant to listen to as well as incredibly informative. Thank you so much for this.

  • @henryhsu9517
    @henryhsu9517 2 ปีที่แล้ว +8

    For beginners, the example 1:05:45 could be viewed as the following.
    inputs:[
    {
    labelt: 'Email',
    value: '',
    typet: 'email'
    },
    {
    labelt: 'Password',
    value: '',
    typet: 'password'
    }
    ],
    template: `{{labelp}} `,
    props: ['labelp', 'typep', 'modelValue'],

    • @codingcat9052
      @codingcat9052 10 หลายเดือนก่อน

      i'm newbie , i can see `labelp`, `typep` mean `labelProp`, `typeProp` but may i ask u what do the `labelt`, `typet` mean , do u mean `labelTemplate`, `typeTemplate` ?
      thank you

    • @SoshJam
      @SoshJam 10 หลายเดือนก่อน +1

      @@codingcat9052 think it's labeltext and typetext

  • @M.......A
    @M.......A 2 ปีที่แล้ว +13

    1:18:04 if it is your first time working with npm, do not forget to first type npm install
    to be able to run the npm start

  • @josephbirara2493
    @josephbirara2493 2 ปีที่แล้ว +1

    This course is the best Vuejs course you can get all over the internet. thank you

  • @mj2068
    @mj2068 2 ปีที่แล้ว

    for people wondering @2:45:25 that multi selection same tag name editing, the magic move is "ctrl+shift+l". you're welcome

  • @baskaisimkalmamisti
    @baskaisimkalmamisti 9 หลายเดือนก่อน +1

    This could be the best explanation style I ever saw in 20 years.

  • @jesussandoval4969
    @jesussandoval4969 2 ปีที่แล้ว +1

    Your voice is so soothing when you speak. I learned a lot from this tutorial and you earned a follower. Thank you!

  • @rockfield64returns67
    @rockfield64returns67 ปีที่แล้ว

    Time stamp that I got from some random comment here on TH-cam.
    Intro
    ⌨ (0:00:00) Introduction
    ⌨ (0:01:03) What is Vue.js?
    ⌨ (0:05:40) Vue 3 Setup
    Basic usage
    ⌨ (0:12:17) Vue JS Directives
    ⌨ (0:19:48) Events and Methods
    ⌨ (0:29:20) Components
    ⌨ (0:39:27) Component Props
    ⌨ (0:57:30) Loops
    ⌨ (1:06:09) Lifecycle Hooks
    Adding Vue.js to a static site
    ⌨ (1:14:30) App Demo
    ⌨ (1:26:45) Adding Items to Cart
    ⌨ (1:43:22) Dynamic Content
    ⌨ (2:15:54) Reuseable Components
    Single Page Application with Vue CLI
    ⌨ (2:26:20) Vue CLI
    ⌨ (2:32:48) Vue Folder Structure
    ⌨ (2:43:58) Top Nav
    ⌨ (2:48:45) Styling with SASS
    ⌨ (3:00:25) Application Pages
    ⌨ (3:06:07) Sidebar
    ⌨ (3:20:46) Adding Items to Cart
    ⌨ (3:24:46) Finishing Up (Card component)

  • @brokko_le3
    @brokko_le3 ปีที่แล้ว

    I'm glad you start of saying that Vue can be used to slowly upgrade older software without needing a complete rewrite from the start. I've looked at angular in the past and that was exactly what I was afraid of. I more or less picked Vue based on first impressions, but I wasn't sure about this. A whole rewrite would simply be too much. Your first examples putting Vue in script tags within HTML page takes a load of my mind too. I was getting the idea that having separate js files was the only way, not just good practice. Every other tutorial did it like that. Separating JS from the HTML by itself would also already be a huge overhaul, so I love knowing I can quite safely upgrade everything step by step and page by page even. Thanks. Now I know I picked the right tool.

  • @Japaneseyap
    @Japaneseyap 3 หลายเดือนก่อน +6

    these are the types of videos that play overnight when i leave my youtube on

  • @PerryCodes
    @PerryCodes 3 ปีที่แล้ว +6

    "Course Contents" can use a little work... Your time for the "Components" section should be 0:29:20 instead of 01:29:20 :) Also, the "Loops" segment isn't listed. It's located at 0:57:30.

  • @tobeagoofy
    @tobeagoofy 3 ปีที่แล้ว +4

    In just 30 minutes of video I was able to learn so much in Vue, thanks.

  • @sayedahmadnaweed1
    @sayedahmadnaweed1 2 ปีที่แล้ว +1

    @everyone, This tutorial structured very well using real world common daily facing problems. I recommend to watch and practice along the way. It is one of the great tutorial I have ever seen.

  • @zoltanhorvathandsomenumbers
    @zoltanhorvathandsomenumbers 3 ปีที่แล้ว +3

    I really appreciate Gwen's calm voice and her straightforward style. Very good tutorial, I really enjoyed it! :)

  • @R4venshore
    @R4venshore 3 ปีที่แล้ว +146

    Jesus Christ. Tutorial is great, but omg what did I get myself into. As someone that has done plenty of coding on your typical C#, Swift, Java, Python, even some and CSS back in the day, is JS and those frameworks different or what...it literally feels like they had a CSS developer create a programming language...

    • @mensaswede4028
      @mensaswede4028 2 ปีที่แล้ว +16

      Yeah all the modern web app frameworks are like this. If you were designing a web framework from scratch in a vacuum then it would look nothing like anything we have today. For starters, JavaScript is just not a good foundational design for large projects. These things have been bootstrapped for over 2 decodes to incrementally achieve purposes for which their original design was never intended. The various tooling and frameworks do work, and they are passable, but not what any architect would design if you could wipe the slate clean and start over.

    • @Alexander-qz6px
      @Alexander-qz6px 2 ปีที่แล้ว +1

      I know what you mean. Was the online shop production painful or what? (In so many ways, even for a demo. I hope noone is ever structuring a cart system like this, but students copy their teachers....)

    • @mourad505
      @mourad505 2 ปีที่แล้ว +1

      @@mensaswede4028 For a new developer who'd like to do his own freelance work one day and not be engulfed by the bloated JS frameworks arms-race, what would you suggest?

    • @mensaswede4028
      @mensaswede4028 2 ปีที่แล้ว +7

      @@mourad505 Suck it up and learn JS. It’s all there is.

    • @ramakrishnamishra8179
      @ramakrishnamishra8179 2 ปีที่แล้ว +2

      Feel the same

  • @jaykay7932
    @jaykay7932 3 ปีที่แล้ว +10

    I recently created a html component using vue for the company I work for (mainly for my benefit of actually getting vue experience).
    I was able to implement a template containing a html table (rows of data with a column for a item and a column for number of items)
    Further to this I implement a drop down which had an onchange Ajax event which changed the counts in the mentioned html table.
    I did this using vues v-for, v-if and value attributes.
    I was impressed with how easily you can populated the DOM with data for both tables and drop downs!
    Looking forward to next implementing a template with a vue component (ie a more complex interface)
    All of this I did without using the CLI as I have zero node experience

  • @caballero75RS
    @caballero75RS 3 ปีที่แล้ว +5

    I solved the products icon problem this way
    You're welcome

  • @anazabalo3379
    @anazabalo3379 2 ปีที่แล้ว +4

    Her voice is so soothing that I just fall sleep every 20 minutes. Great explanation though

  • @gueyenono
    @gueyenono 2 ปีที่แล้ว +5

    I just completed the course. Thank you very much. It was excellent!

  • @mauromarchesan9463
    @mauromarchesan9463 10 หลายเดือนก่อน +2

    If anyone in 2023 is having problems with gyp errors when running npm install, just check node version compatibility. For example node version 20+ works with node-sass 9.0

  • @yassertarek2488
    @yassertarek2488 2 ปีที่แล้ว +5

    A great Course in a great way which at first seemed to me to be sloppy, but with perseverance everything became clear. Thanks a lot ! ♥

  • @codewithtae6637
    @codewithtae6637 3 ปีที่แล้ว +7

    The issue at 2:05:36 occurs because the accumulator wasn't set to 0 to begin with! Object.keys and Object.values should return the object names and value in order!:)

    • @poldiaz
      @poldiaz ปีที่แล้ว

      solution???

  • @darksideishere
    @darksideishere ปีที่แล้ว

    Vue is unbelievable! One of the best things that I've learned. Thank you so much for this!

  • @kosyauzer4787
    @kosyauzer4787 3 ปีที่แล้ว +79

    Vue devs: Vue is very simple and straightforward and beginners friendly
    also them: Lemme show you how to make simple log in form
    *proceeds to building a nuclear power plant

    • @webinatic216
      @webinatic216 3 ปีที่แล้ว +17

      In Angular we are building schematics to land people on Mars just for your first name in the input field.

    • @lexxluey
      @lexxluey 3 ปีที่แล้ว +2

      @@webinatic216 LMAO. i agree with both comments

    • @ugochukwuumerie6378
      @ugochukwuumerie6378 2 ปีที่แล้ว

      😆 🤣 😂

  • @VeereshPatel15
    @VeereshPatel15 3 ปีที่แล้ว

    Hi, if u dont mine please do videos on
    1. Why / when/ what actually frontend/ backend devoloper need for software industry
    2. What actually frontend developers do in realtime Scinorio Or when project assigned
    3... Realtime frontend development tasks
    4.. If project started what are the different tasks need to do--))by the frontend devoloper..
    5..Easy way to to crack any angular interviews with 3+ experience/10lack package ------) ))
    6..Top 20 program's to cover entire angular syllabus.----))
    7...Top 10 angular concepts
    Please explain by taking one example/project
    8...what type of skills (soft/technical)really need for industry
    9... 4+ experience of frontend devoloper need to update what type of skills

    • @dimuthumunaweera8690
      @dimuthumunaweera8690 3 ปีที่แล้ว +1

      you can find answers for most of these if you do some research so i encourage you to do so!
      cheers!

  • @AhmedABED-km6fv
    @AhmedABED-km6fv 3 ปีที่แล้ว +9

    I like when you did an array of objects to create a form

  • @MissBoom135
    @MissBoom135 2 ปีที่แล้ว +3

    Fantastic course thank you! This was my first delve into using Vue and you explained everything very well 🔥

  • @souravjamwal77
    @souravjamwal77 3 ปีที่แล้ว +10

    And I was just reading the Vue js docs for project structure when this popped up

  • @drivewithritik
    @drivewithritik 3 ปีที่แล้ว +3

    Oh my god, I am waiting for this kind of Vue Tutorial.
    And You uploaded it.
    God bless You ❤️

  • @bashrjj
    @bashrjj 2 ปีที่แล้ว +1

    For people stuck installing devDependencies after cloning 'vue3-fcc-course-basic-product-cart-demo'...
    you need to update the dependency versions in package.json (eg. concurrently^5.1.0 -> concurrently^7.0.0)
    this can be automated with `npm i -g npm-check-updates` (needs sudo on unix-based systems)
    then by running npm-check-updates -u (INSIDE the 'vue3-fcc-course-basic-product-cart-demo' directory)
    then FINALLY.. npm install.

    • @xo2895
      @xo2895 ปีที่แล้ว

      Thanks a lot! Helped me.

    • @brandtjryan
      @brandtjryan 11 หลายเดือนก่อน

      Helped me too, many thanks

  • @WowaDreamer
    @WowaDreamer 3 ปีที่แล้ว +28

    This is a great tutorial! Well paced

  • @shifronim8950
    @shifronim8950 3 ปีที่แล้ว +11

    Oh, Gwendolyn is back!

  • @erwinaditya9824
    @erwinaditya9824 3 ปีที่แล้ว +4

    OMG! what I was waiting for from the previous version is here

  • @thegreatprogrammer5937
    @thegreatprogrammer5937 3 ปีที่แล้ว +3

    I had a backend in express and today I had thought to learn and use Vue for frontend... And got this today itself.... What a coincidence

  • @Lucifer-xk9de
    @Lucifer-xk9de ปีที่แล้ว +1

    Faraday....which bring me back to high school, physics class..

  • @dineshpaskaran
    @dineshpaskaran ปีที่แล้ว

    This is sure premium content.. and so thankful that its free. 🙏🙏🙏🙏

  • @mohammadravand4351
    @mohammadravand4351 ปีที่แล้ว

    this is best and will completed it and start learning vuejs, thank you for this perfect course.

  • @abirajrajendran2327
    @abirajrajendran2327 3 ปีที่แล้ว +2

    I started vueJS just a week ago,,, and this will be a great help, thanks team 🙌🏼❤️

    • @aammssaamm
      @aammssaamm 3 ปีที่แล้ว +1

      Waste of time.

    • @EPrimeify
      @EPrimeify 3 ปีที่แล้ว

      @@aammssaamm why is it a waste of time?

    • @aammssaamm
      @aammssaamm 3 ปีที่แล้ว +1

      @@EPrimeify Same hardcoded HTML like Angular and React.

    • @fariduzzamaansari1656
      @fariduzzamaansari1656 3 ปีที่แล้ว

      @@aammssaamm Can you offer a bit more insight to your opinion?

    • @aammssaamm
      @aammssaamm 3 ปีที่แล้ว +2

      @@fariduzzamaansari1656 It's obvious: they all promise dev speed, and you end up writing HTML and inline handlers by hands all the way in components which are supposed to be reusable, but in reality they cannot be re-used across different project due to their complexity. State management - it's a pure nightmare as per those who know it inside out. It can be way simpler and faster.

  • @husseinhammoud9865
    @husseinhammoud9865 2 ปีที่แล้ว +2

    I like the way you teach programming, thanks for the effort you put on this video

  • @billyzman666
    @billyzman666 2 ปีที่แล้ว +2

    This is awesome! Thank you. One of the best educational videos I have watched on youtube. The sites design is quite an eye sore though haha, gonna have to update that.

  • @clustersnake
    @clustersnake 3 ปีที่แล้ว +1

    I'll never get tired or vuejs or Gwen videos!

  • @jcdevelopment3392
    @jcdevelopment3392 ปีที่แล้ว

    If you're watching this later like myself, and are having issues running app demo, a core npm package requires python. Make sure you have python installed before running npm install.

  • @ListenAlQuran
    @ListenAlQuran 3 ปีที่แล้ว +3

    the looks so awesome.... love your recordings to such an extent!

  • @Abdulrehman.M
    @Abdulrehman.M 2 ปีที่แล้ว +1

    Coding may not be fun but learning how to code is fun and immersive

  • @brijwish7083
    @brijwish7083 2 ปีที่แล้ว

    Awesome tutorial for new learner and appreciated. Many small useful things are used in between that one should learn about javascript before appearing an interview.Thanks May God bless you long and happy life.

  • @bikashkumardash5652
    @bikashkumardash5652 ปีที่แล้ว +1

    Very nice but if you would have included the Vuetify then it would be much better.😃. Thanks for making this incredible video.

  • @kasperskyns
    @kasperskyns 2 ปีที่แล้ว +1

    Nicely structured and presented, easy to understand.. pleasant voice. I really enjoyed it.

  • @thomasgaylard7219
    @thomasgaylard7219 2 ปีที่แล้ว +3

    Thank you for creating such a clear and engaging tutorial. It really helped me to understand some of the key concepts of Vue and has stood me in good stead as I start to build my app. You have a rare talent for teaching, and presenting ideas in a concise but clear way. I will be on the look out for more of your tutorials.

  • @senatorcox7171
    @senatorcox7171 2 ปีที่แล้ว

    Thanks very much, great course, I like the concept and how you highlighted problems that can be encountered using the Vue CDN but then solve them all in your CLI version of the course.

  • @doraemon5990
    @doraemon5990 2 ปีที่แล้ว

    I'm glad I stumbled upon this tutorial. You speak very calm and without loads of filler sentences.
    Thank you 😄.

  • @guliyevshahriyar
    @guliyevshahriyar ปีที่แล้ว

    Thank you very much, Gwen Faraday! This course taught me tons of Web Programming knowledge. Looks forward to watch more from you in the Internet 😊😊 Keep up teaching good!

  • @val_ery1445
    @val_ery1445 2 ปีที่แล้ว +1

    The course raises many questions (for me, as a complete noob).
    For example, getting data from a json file.
    Or work with the "add to cart" functionality. Here, in general, Gwen's actions resemble magic. With movement through the code (up and down), the use of variables (where is the index ?, where is the inventory ?, where is the product? And why is the inventory initially in the cycle, where there is already a product?) ...
    It's almost impossible to repeat this ( It's a pity...

    • @tz2756
      @tz2756 2 ปีที่แล้ว +1

      This is where the backend comes into play, I would suggest looking at a video that explains the relationship between backend and frontend. Backend sends data (for example in JSON format) which is then processed by frontend.

  • @sammacsammac
    @sammacsammac 4 หลายเดือนก่อน

    Amazing, thank you very much, Gwen. It is exactly what fits in my noobish experience!

  • @vaibhavmatere18
    @vaibhavmatere18 ปีที่แล้ว

    45:06 emailLabel and passwordLabel used interchangable here by mistake.
    49:59 fixed; re-arranged.
    (for those who are following this tutorial)

  • @galfromtheinternet
    @galfromtheinternet 3 ปีที่แล้ว +5

    thank you very much for this tutorial!!!! always grateful for your free education!

  • @ThorloX69
    @ThorloX69 2 ปีที่แล้ว

    Just a quick tip for anyone who gets a little blind when it comes to HTML, You can add /*Html*/ in front of the template like this /*HTML*/ `Code` it'll work the same, but will have the HTML setup :)

  • @darou.darmani
    @darou.darmani 2 ปีที่แล้ว

    سلام دوست عزیزم فوق العاده بود واقعا کیف کردم دمتون گرم امیدوارم بتونی هر چه زودتر در یوتوب به درامد بزرگی برسی ، با افتخار فالو شدید ممنون میشم فالومون کنید

  • @ВасилисаХон-я6д
    @ВасилисаХон-я6д 2 ปีที่แล้ว

    Gwen has such an ASMR voice, sooooo relaxing

  • @mamurolimov
    @mamurolimov 3 ปีที่แล้ว +1

    sound quality is incredible

  • @ambig1
    @ambig1 2 ปีที่แล้ว

    Tried to follow this tutorial for a month or so (new to front end) but after more than a month I feel that it is all over the place after 30 minutes into the video. Hopefully I will try come back again. Bad thing about vue 3 is not many tutorial on youtube and too many react or angular tutorials

  • @u2okn
    @u2okn 2 ปีที่แล้ว +1

    Great video! It is the best learning video I've found yet. Thanks for that great content.

  • @redblues9566
    @redblues9566 ปีที่แล้ว

    I'm really thanks for your teaching. You are the best!!! from South Korea.

  • @grilledpikachu
    @grilledpikachu 2 หลายเดือนก่อน

    Simplest fix for the issue of 'product.icon' not being visible @1:49:18:
    Vue.js cannot dynamically bind class names directly within the template syntax like done in the video. Here, we are using binding which allows us to dynamically bind classes. And the array syntax ensures that both 'icofont-10x' and `icofont-${product.icon}` classes are applied to the element.

  • @jun-uen0
    @jun-uen0 3 ปีที่แล้ว +3

    Great course!! Easy to understand. Thank you! I will check out other video courses on your channel!!

  • @maxrichard8852
    @maxrichard8852 3 ปีที่แล้ว +3

    Great course.
    Enjoyed it very much to the end!
    Waiting for more!!!

  • @carlosc4223
    @carlosc4223 2 ปีที่แล้ว

    44:38 without regsitering my component "custom-input" it still works!

  • @VigneshDhakshinamoorthy
    @VigneshDhakshinamoorthy 10 หลายเดือนก่อน

    That’s very cool you can continue the board vs a computer. ❤thanks for sharing.

  • @nikhilkaushal1615
    @nikhilkaushal1615 3 ปีที่แล้ว +3

    Great course!
    It really helps to get the basic Vue knowledge.

  • @surajitdas6555
    @surajitdas6555 2 ปีที่แล้ว

    Very good tutorial. First step for learning vue js is done now. Will create a similar app myself

  • @davidatebisun
    @davidatebisun 2 ปีที่แล้ว

    Nice one. This course is enough for a review for me. I have been working with nuxt for a while I just needed a review with vue way of things

  • @nandanvyas7788
    @nandanvyas7788 2 ปีที่แล้ว

    Best vue_js tutorial for beginners

  • @LevisRaju
    @LevisRaju 3 ปีที่แล้ว +2

    I was waiting for an updated version.

  • @DrNightling
    @DrNightling 3 ปีที่แล้ว +2

    The time stamp for Components is incorrect. It should be 0:29:20 instead of 1:29:20.

  • @trycode-sl
    @trycode-sl 2 ปีที่แล้ว

    I love this video.
    Food icons are not added to the food card.

  • @riccardoguitar
    @riccardoguitar ปีที่แล้ว

    First of all, thank you for your always top contents!
    I was enjoying the course so far, but..when we putted sass in, it started to shout at me with errors - solved clicking on the top-right x sign of the overlay and I was able to still see and use the page.
    I could not install the sass-loader, in any suggested way. I tried to re-do the entire project installing css pre-processor at "vue create" stage - nothing to do, other tons of errors and this time nothing on screen.
    I have to give up. So bad, I was learning a lot.
    Please, take a look at this points if you have the time, may be it could need just some few adjustements to make the course still fully enjoyable.

  • @techicode0
    @techicode0 2 ปีที่แล้ว

    I always enjoying your tutorials. It's very helpful you have the quality to teach.... I'm extremely interested to learn more from you.

  • @mathsandsciencechannel
    @mathsandsciencechannel 3 ปีที่แล้ว +7

    Great video sir. Your calc videos has really helped me a lot and inspired me to help others also. Also started learning programing so this video will help a lot.. ♥️♥️♥️

    • @MagicPlants
      @MagicPlants 3 ปีที่แล้ว +10

      lmao sir you def didn't watch it

  • @robertprescott9577
    @robertprescott9577 2 ปีที่แล้ว +4

    Hello, is this really a beginner course? seems a bit advanced. I am a total newbie. Do you have any courses that are for newbies?

    • @khanhvynguyen7858
      @khanhvynguyen7858 4 หลายเดือนก่อน +2

      if you find this advanced, it should learn HTML, CSS, JS course first before diving into Vue

  • @francosbenitez
    @francosbenitez 3 ปีที่แล้ว +1

    What a clear tutorial! Many thanks for this.

  • @JustAZivi
    @JustAZivi 2 ปีที่แล้ว

    This tutorial is awesome!
    Great teacher!

  • @alin-alexandru-peter
    @alin-alexandru-peter ปีที่แล้ว

    If you are really good with React, or even are at some medium level it'll be damn easy. You just need to understand the syntax and some other easy things.

  • @greatred2558
    @greatred2558 3 ปีที่แล้ว +1

    wow. def gonna watch it over weekend

  • @TristanBailey
    @TristanBailey 3 ปีที่แล้ว

    Great pacing to get started. With the odd pause needed to go try it out.

  • @yshiawallace7636
    @yshiawallace7636 2 ปีที่แล้ว

    Thanks for this excellent crash course Gwen!

  • @samiulsalehin1266
    @samiulsalehin1266 2 ปีที่แล้ว

    Great video, thank you so much. Can you kindly tell me which plugin are you using for auto suggestion?

  • @gowdhamt1651
    @gowdhamt1651 ปีที่แล้ว

    Thanks for the wonderful tutorial, helped me in understanding basics of Vue js. Is there any follow up tutorials(like vuex state mgmt) on vue js released?

  • @cingetorixhelvetii5172
    @cingetorixhelvetii5172 ปีที่แล้ว

    according to chat gpt, it is not necessary to use space in self closing html tags like anymore because of HTML5

  • @Tukooldegreat
    @Tukooldegreat ปีที่แล้ว

    Awesome, Is there a playlist for this tutorial?

  • @黄オリビア
    @黄オリビア 2 ปีที่แล้ว

    Thank you so much Gwen!! Great course!

  • @Satishkumar-rx7oy
    @Satishkumar-rx7oy 3 ปีที่แล้ว

    tutorial is very helpful and explanation is pretty easy to understand. thanks for making this

  • @daviddq
    @daviddq 2 ปีที่แล้ว

    Awesome introduction. Thanks a lot