Использую Vue3, Inertia.
Раньше переводы с бэка получал на фронте так
const trans = window.trans;
Vue.prototype.trans = trans;
Сейчас не работает. Пишет
Uncaught ReferenceError: Vue is not defined
Пробовал
import { createApp, h } from 'vue';
createApp.prototype.trans = trans;
Не работает. Пишет
Uncaught TypeError: Cannot set properties of undefined (setting 'trans')
Весь код с настройками app.js созданный автоматом (в котором я мало что понимаю) выглядит так
import './bootstrap';
import '../css/app.css';
import { createApp, h } from 'vue';
import { createInertiaApp } from '@inertiajs/inertia-vue3';
import { InertiaProgress } from '@inertiajs/progress';
import { resolvePageComponent } from 'laravel-vite-plugin/inertia-helpers';
import { ZiggyVue } from '../../vendor/tightenco/ziggy/dist/vue.m';
const appName = window.document.getElementsByTagName('title')[0]?.innerText || 'Laravel';
// Переводы
const trans = window.trans;
createApp.prototype.trans = trans;
createInertiaApp({
title: (title) => `${title} - ${appName}`,
resolve: (name) => resolvePageComponent(`./Pages/${name}.vue`, import.meta.glob('./Pages/**/*.vue')),
setup({ el, app, props, plugin }) {
return createApp({ render: () => h(app, props) })
.use(plugin)
.use(ZiggyVue, Ziggy)
.mount(el);
},
});
InertiaProgress.init({ color: 'rgba(96, 165, 250, var(--tw-bg-opacity));' });
Что нужно исправить, чтобы получить в файлах vue trans и делать {{trans.auth.failed}} получив строку перевода?