import { n, t } from '@nextcloud/l10n' import App from './App.vue' import { createApp } from 'vue' import router from './router.js' import store from './store/main.js' const Vue = createApp(App) Vue.mixin({ methods: { t, n } }) Vue.use(router) Vue.use(store) Vue.mount('#content')