Maksk89
Maksk89
Hello! Could you help me with such question, please? In my library I have **primevue.ts** ``` import type { App } from "vue"; import PrimeVue from "primevue/config"; import Button from...
Hello. I'm having the same issue using my component library: package.json of a **component library** ``` "peerDependencies": { "vue": "^3.4.27", "primevue": "^4.3.3", "@primeuix/themes": "^1.0.1", "primeflex": "^4.0.0", "primeicons": "^7.0.0" } ```...
Let me provide more information: in my component library I have a file named **primevue.ts**: ``` import type { App } from "vue"; import PrimeVue from "primevue/config"; import Button from...
> I found that every custom library that uses primevue, must export the Config type from primevue. The in the main app, it must call each using the app.use(...). >...
Could you help me with another question, please? If I do like this ``` import { palette } from "@primeuix/themes"; const primaryColorValue = "#1f36c7"; const primaryColor = palette(primaryColorValue); export const...
Could you help me with another question, please? In my library I have **primevue.ts** ``` import type { App } from "vue"; import PrimeVue from "primevue/config"; import Button from "primevue/button";...