import type { Composer } from 'vue-i18n' export default defineNuxtPlugin((nuxtApp) => { const i18n = nuxtApp.$i18n as Composer if (i18n) { i18n.mergeLocaleMessage('ru', { 'ui.select.selected': 'Выбрано: {0}', 'ui.select.select_option': 'Выбрать', 'ui.search': 'Поиск', }) i18n.mergeLocaleMessage('en', { 'ui.select.selected': 'Selected: {0}', 'ui.select.select_option': 'Select', 'ui.search': 'Search', }) } return {} })