未捕获的类型错误:无法读取未定义的属性(读取‘config’)
2022-10-28
2813
2个回答
您应该在 mount 之前使用 use >
app.use(PrimeVue);
app.mount('#app');
Nikola Gava
2022-10-29
如果是 SSR NuxtJS,请在插件目录下创建一个类似 primevue.js 的文件进行配置。
import { 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
});
HTiT
2023-09-22