Create a Custom Component Library with Vue & Tailwind CSS

แชร์
ฝัง
  • เผยแพร่เมื่อ 6 ม.ค. 2025

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

  • @rm-rf
    @rm-rf 2 ปีที่แล้ว +23

    If you do not use Tailwind in the project that consumes the component library, you probably want to disable preflight (style resetting). Otherwise it may break your main applications layout. Also, to avoid clashing class names when you do use Tailwind in your main application, use some prefix for tailwind in the component library (like tw-).

    • @sahib.alejandro
      @sahib.alejandro ปีที่แล้ว

      This is very helpful, thanks

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

      Hello, how I can add prefix to tailwind?

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

      Thanks for the tip!

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

    i have a small question:
    if i wanna use my web component which is created by vue 3 in a third party website (website may uses any version of vue or not at all)
    and the question:
    is it possible to face vue version conflict between my web component vue version and the third party website vue version ?

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

    8:20 you re importing again the component which is already imported by the other index.js file.
    it would be more clean to simply do: export * from ./Button

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

    How we can import as a component currently based on the video we are importing at the root level you can say in app mount I want to import the component in wherein I need to use (route or components based wherein we need to use not on the root level)

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

    In case you don't want to use the css from package, instead discover the files from node_modules/florida-components and compile them into your project. Example ⬇
    module.exports = {
    content: [
    'node_modules/florida-components/dist/*.js'
    ],
    OR
    module.exports = {
    content: [
    'node_modules/florida-components/components/**/*.vue'
    ],

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

      thank you very much!!

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

    What are the differences in the configuration if one is using the Vite, without vue-cli?

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

    Where is TS support? :(

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

      Created one on my github btw: a-3140/vue3-tailwindcss-ts-ui-component

  • @ZlatkoIliev-s4j
    @ZlatkoIliev-s4j ปีที่แล้ว

    What if I want to also export icons from my library?!? How can I do that?

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

    why is using the old create vue app? can we use the new way of scaffolding vue projects?

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

    why register them globally? would not make sense to import only whatever is needed? as soon as the library grow, the probability to don't use of all them is quite high

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

    But it's build one big css file that not ideal for production

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

    Great presentation, however the name of the video should be "Create Custom Vue Component Library with Tailwind"

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

    1. WHY would I do this rather than use Vuetify? I am at this decision point. (I have used Vuetify before)
    2. I dislike the Vuetify layout classes, although I am not a CSS master (or competent) I prefer to use raw CSS so I learn the basics of grid and flexbox. Is this a good approach?
    3. Another example/preference (am I wrong?)... Rather than use v-divider from Vuetify is it not more simple to use (using base technology makes it more accessible )

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

      Why? Because someone gave you styleguide and brand guidelines to follow.

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

      1. Building your own component library can give you better control over the design of your application.
      You also won't be dependent on library issues and limitations.
      Vuetify isn't that good anyway plus it is very opiniated...
      2. It can be, but it requires more attention to details. Tailwind is a good middle-ground honestly.
      3. Use what works for you... if works, then why not use it?

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

      imo this talk is about how to wrap your own components (css & behavior) into a npm package for others to consume.
      you can use any ui library or write your own entirely custom css and behavior for your components & tailwind was just used for demo purposes.

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

      @@hogwrangler3283 thanks, yes, there was a lot of 'NPM' in this which is not important to me. I thought of 'roll my own' but that is too ambitious for our small team. Lowest risk is to use Vuetify with our own layer of styled components; we can style differently from the toy-town look that comes out-of-the-box.

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

      1) on large companies where they have several internal projects you may need to have a good design system with its own component library based on all needs across projects rather than having to install n+vuetify instances and copy pasting components. Both ways work, it depends on what you need; does it going to have a big scale? o just one small project.

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

    🤣😂🤣😂 the code always want to show off when you are showing it to people.

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

    These presentations are getting more and more useless. Please, now teach me how do you declare variables.