Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Tailwind layers not working correctly using PrimeVue documentation #4

Closed
AndresMpa opened this issue Jul 5, 2024 · 3 comments
Closed

Comments

@AndresMpa
Copy link

Hey there, I've been reading this Tailwind CSS section at PrimeVue documentation and I got a couple of questions.

When I try this example it doesn't work under the configuration explained here, the plugin section says: "It is designed to work both in styled and unstyled modes", I'm trying the "styled mode" but Tailwind is not working for the example in the documentation.

Also there's a disclaimer in the presets section that says "Currently, the Tailwind CSS Presets are not compatible with v4 and will be with a future update after v4 final." But the Override section below uses them. I understand that I can use them as part of the configuration for the "CSS layer" option, am I missundertanding something?

I see that there're many options to use Tailwind CSS with PrimeVue, but I haven't found any working for my usage case on them, I have tried the documentation configration in different ways but Tailwind CSS is still not working properly.

Hope someone can give me a hand, greetings!

@AndresMpa AndresMpa changed the title Tailwind layers not working correctly Tailwind layers not working correctly using PrimeVue documentation Jul 5, 2024
@LouisVA
Copy link

LouisVA commented Jul 18, 2024

I am having exactly the same issue. I used primevue 3 before, with 4 I am happy they remove sass and stuff but it's very confusing on how I am now supposed to use tailwind. Tailwind css classes do nothing atm.

https://tailwind.primevue.org/ also exists, I asked on discord what exactly the diff is with primevue 4 and got no response.

@LouisVA
Copy link

LouisVA commented Jul 18, 2024

@AndresMpa

I managed to fix it by asking GPT.

So first make sure tailwind is correctly installed, following https://tailwindcss.com/docs/installation was not sufficient as I use vite/vue so I followed https://tailwindcss.com/docs/guides/vite#vue as it has a few extras:

npm install -D tailwindcss
npx tailwindcss init

becomes

npm install -D tailwindcss postcss autoprefixer
npx tailwindcss init -p

Also tailwind.config.js needs to specifically mention .vue files which wasn't the case for me

/** @type {import('tailwindcss').Config} */
export default {
  content: [
    "./index.html",
    "./src/**/*.{vue,js,ts,jsx,tsx}",
  ],
  theme: {
    extend: {},
  },
  plugins: [],
}

and somewhere you need to mention

@tailwind base;
@tailwind components;
@tailwind utilities;

in a css. Since I don't use a main css, I just added it to my App.vue <style></style> as the first lines.

Now it works for me.

@SidneyDaniel
Copy link

Thank you, Louis.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants