19 lines
454 B
JavaScript
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),
|
|
})
|