How to Build a Counter Component with Web Components - JavaScript Tutorial

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

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

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

    Going to be watching all the vids in this playlist

  • @alanbalvin7731
    @alanbalvin7731 3 หลายเดือนก่อน

    This is the first video tutorial i started and ended in just one session since i start studying programming one year and a half ago, very well explained and straight forward to the point!!! I hope to get the job of my dreams after i learnt how to build a web component

    • @dcode-software
      @dcode-software  3 หลายเดือนก่อน

      Good luck my friend 🤞

  • @suelingsusu1339
    @suelingsusu1339 11 หลายเดือนก่อน +3

    WOW... BRAVO!!! This was very educational and your explanation SUPERB...👏👏👏🙏🙏🙏🙏🙏👌👌👌👌👌🖖🖖🖖🖖🖖

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

    Thanks for this. I am just started learning Web Components and the first videos I've watched was declaring a new Template element then cloning it before appending it to the shadow DOM. I am now curious which approach is better - this defining the template with arrow scoped function or the template element?

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

    Great video! So nicely explained.
    Just asking here. Let's say I wanted to use this in a project. It will be very cumbersome to write the html, and also debug, without proper code completion (intellisense). Is there a way around this at the moment? Any suggestions are welcome.

  • @johnlabuci96
    @johnlabuci96 11 หลายเดือนก่อน +1

    this is very good tutorial, and dive deep too..

  • @richardalvarado1877
    @richardalvarado1877 11 หลายเดือนก่อน +1

    Thank you for this

  • @BryanDevsCoding
    @BryanDevsCoding 11 หลายเดือนก่อน +1

    nice tutorial Thank you.

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

    can you define a js to handle component operations inside a template also and render it ?

  • @KelvinWKiger
    @KelvinWKiger 5 หลายเดือนก่อน

    thank you

  • @rayyanabdulwajid7681
    @rayyanabdulwajid7681 11 หลายเดือนก่อน +1

    What is the use of frameworks if we have this feature?

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

    Question. Why is the listener bound in the render method? Is that the only place we have access to the shadow dom elements?

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

      Nice video by the way. I really enjoyed it.

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

      That last part on how to reference the attributes in the index js file is gold.

  • @noswag5773
    @noswag5773 8 หลายเดือนก่อน

    Wow mozzila didn't put it this way, I was so confuse. I PREFER THIS ❤❤❤

  • @innerstateofflow7777
    @innerstateofflow7777 11 หลายเดือนก่อน +1

    can you make more web components tutorial

  • @Bengadeer
    @Bengadeer 11 หลายเดือนก่อน +1

    Error on index.js: import is from ../components/Counter.js not ./components/Counter.js

  • @EpicGamer-ny1fu
    @EpicGamer-ny1fu 6 หลายเดือนก่อน

    Why are you defining your Components in index.js instead of at the bottom of your component js file?

  • @KelvinWKiger
    @KelvinWKiger 5 หลายเดือนก่อน

    I got no IntelliSense : (

  • @EpicGamer-ny1fu
    @EpicGamer-ny1fu 6 หลายเดือนก่อน

    and why are you using strings as templates... you should be using html templates with web components...

    • @philipk9130
      @philipk9130 5 หลายเดือนก่อน

      how can be used html templates with web components?, every example showed in youtube have the template created in js (strings, or backticks same thing), or in the index.html which is non optimal, how can be used for example a template part in its own folder with just html in it for the template and be called in the js component and be called and printed in the index.html page? i was using fetch but live code throw a error about inserting body or head tag to proper working, this is the only option?