repod/src/main.js
Michel Roux 310a2b28f1
Some checks failed
repod / php (push) Waiting to run
repod / nodejs (push) Waiting to run
repod / xml (push) Has been cancelled
Fix filters & add l10n
2024-01-10 15:25:54 +01:00

19 lines
454 B
JavaScript

import { translatePlural as n, translate as t } from '@nextcloud/l10n'
import App from './App.vue'
import Vue from 'vue'
import { generateFilePath } from '@nextcloud/router'
import router from './router.js'
import store from './store/main.js'
// eslint-disable-next-line
__webpack_public_path__ = generateFilePath(appName, '', 'js/')
Vue.mixin({ methods: { t, n } })
export default new Vue({
el: '#content',
router,
store,
render: h => h(App),
})