-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
Nuxt3 integration #1660
Comments
Working on it for this week. It is at the top of our list. |
No luck so far. |
Finally got it working, dealing with some warnings. |
Had to give up on the module for now due to having so many things failing with the module, Nuxt 3 is in beta and it is quite unstable as stated on their website with missing documentation. So until final, adding a guide to our docs which is how to install it manually. nuxt.config.jsimport { defineNuxtConfig } from 'nuxt3'
export default defineNuxtConfig({
css: [
'primevue/resources/themes/saga-blue/theme.css',
'primevue/resources/primevue.css',
'primeicons/primeicons.css'
]
}) Create a file like primevue.js under plugins directory; primevue.jsimport { defineNuxtPlugin } from "#app";
import PrimeVue from "primevue/config";
import Button from "primevue/button";
export default defineNuxtPlugin((nuxtApp) => {
nuxtApp.vueApp.use(PrimeVue, {ripple: true});
nuxtApp.vueApp.component('Button', Button);
//other components that you need
}); Will put up a sample repo and add it to the docs as well. |
Hi people! Last changes on nuxt3 CI generates error after build process. The result code on bundling process not showing errors but
My code:
My config -> Node: 16.13 NPM: 8.1.0 Any ideas? |
Same issue here! |
Solved here: #1969 |
Nuxt3 beta has now been released, just wandering if there are any plans to have a module for nuxt3?
The text was updated successfully, but these errors were encountered: