Create a Custom Component Library with Vue & Tailwind CSS

Поділитися
Вставка
  • Опубліковано 29 вер 2024

КОМЕНТАРІ • 26

  • @rm-rf
    @rm-rf Рік тому +22

    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!

  • @maxk6655
    @maxk6655 Місяць тому

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

  • @juanramonlabrada2653
    @juanramonlabrada2653 Рік тому +2

    Why in min 17:31 she is importing the style from 'florida-components-test-2/dist' and not from the library that was installed? Also in the github demo code this is wrong.

  • @alexandreevich2278
    @alexandreevich2278 Рік тому +9

    Where is TS support? :(

    • @markatienza5101
      @markatienza5101 Рік тому

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

  • @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'
    ],

  •  Рік тому +8

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

  • @amirhoseinarmantaheri7029
    @amirhoseinarmantaheri7029 7 місяців тому

    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

  • @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

  • @ZlatkoIliev-s4j
    @ZlatkoIliev-s4j Рік тому

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

  • @YouGetIt
    @YouGetIt Рік тому

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

  • @CuevasGPablo16
    @CuevasGPablo16 Рік тому

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

  • @breezycodes
    @breezycodes Рік тому +1

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

  • @andrewboddy2791
    @andrewboddy2791 Рік тому +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 Рік тому +5

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

    • @OzoneGrif
      @OzoneGrif Рік тому +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

      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 Рік тому

      @@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 Рік тому +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.

  • @brokula1312
    @brokula1312 Рік тому +3

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