Understand How The ExportAs Works in Angular

Поделиться
HTML-код
  • Опубликовано: 18 ноя 2024

Комментарии • 24

  • @AlainBoudard
    @AlainBoudard 2 года назад +1

    Excellent presentation. Nice use case also 👌😎

  • @KamelJabber1
    @KamelJabber1 2 года назад +1

    Excellent! I didn't know about this, thanks!

  • @madpwnz
    @madpwnz 2 года назад +2

    Very helpful video!
    Thank you a lot for your effort mate!!

  • @ugochukwuumerie6378
    @ugochukwuumerie6378 2 года назад +1

    This is awesome 👌 and a very useful tip. I didn't know about this. Keep them coming. Can you do a video on templates with outlets and context, yet to understand it clearly? Thanks

    • @CodeShotsWithProfanis
      @CodeShotsWithProfanis  2 года назад

      Thanks for your feedback. Stay tuned, more videos will come and yes, those that you mentioned as well :)

  • @ManadayMavani
    @ManadayMavani 2 года назад +1

    This is excellent! Thank you so much.

  • @ovuokeaghwotu2389
    @ovuokeaghwotu2389 2 года назад +3

    Greate video. I like that your vscode theme makes comments stand-out. One of Ben Kuhn's articles mentioned needing a theme like that and I've been on the lookout since. What is the name of your theme? Thank you again for making this video!

    • @CodeShotsWithProfanis
      @CodeShotsWithProfanis  2 года назад +2

      The name of the theme is Dracula.
      I guess, though, that adding the following in your vsCode json settings, will do the trick
      "editor.tokenColorCustomizations": {
      "comments": "#03a118" // set the color you prefer
      },

    • @ovuokeaghwotu2389
      @ovuokeaghwotu2389 2 года назад +1

      @@CodeShotsWithProfanis Perfect! Thank you

  • @fahadgaliwango4502
    @fahadgaliwango4502 2 года назад +1

    very informative , thanks

  • @mohamadhelaly4979
    @mohamadhelaly4979 2 года назад +1

    Thanks alot, awesome as usual

  • @letok2871
    @letok2871 2 года назад +1

    Greate video!!!!

  • @balajibalamurugan8053
    @balajibalamurugan8053 2 года назад +1

    Awesome 🔥

  • @Rheider92
    @Rheider92 2 года назад +1

    I need your help, you would be my hero :D i need to use a library ( swiper ) and then i want to create a library using this library and use it in a new angular project, but i always get problem and it doesnnt work :( pls help i really dont understand where is the problem :(

  • @balajibalamurugan8053
    @balajibalamurugan8053 2 года назад +1

    We can also do this particular use case by querying app-product component and call the function we wanted ! Is that correct ?

  • @markgoho
    @markgoho 2 года назад +1

    This video feels like it's missing all the "gotchyas" associated with this strategy -- if something is this simple with no side effects, why don't we see it used more?

    • @CodeShotsWithProfanis
      @CodeShotsWithProfanis  2 года назад

      I guess that in most of the cases the info from a child component should be handled from the source code of the parent component. In this case, apparently the exportAs won't work.
      There are no side effects, but I plan to create one more video with some additions