//app.js createInertiaApp({ title: (title) => `${title} - ${appName}`, resolve: (name) => require(`./Pages/${name}.vue`), setup({ el, app, props, plugin }) { return createApp({ render: () => h(app, props) }) .use(plugin) .use(PrimeVue) .mixin({ methods: { route...
Version 2.0.0-beta.9 Steps to reproduce I use PrimeVue and vue 3. Tests don't understand PrimeVue components. How do I configure it correctly? jest.config.js module.exports = { preset: '@vue/cli-plugin-unit-jest', "moduleFileExtensions":...
// i18n import { createI18n } from 'vue-i18n'; import deDE from './locales/de-DE.json'; import enGB from './locales/en-GB.json'; import itIT from './locales/it-IT.json'; export const i18n = createI18n({ legacy: false, // you must set `false`, to use Composition API locale...
The child component which I need to test (and causing the issue) is a Dialog component from PrimeVue. <template> Parent <Dialog :visible="true"> ... </Dialog> </template ... Looking at the Dialog's source code, I noticed that the component itself uses the built-in <Teleport> compone...