repod/src/main.js
Michel Roux de1b7184d2
All checks were successful
repod / xml (push) Successful in 19s
repod / php (push) Successful in 41s
repod / nodejs (push) Successful in 1m22s
repod / release (push) Has been skipped
refactor: ♻️ update project from app-template
2024-05-29 17:11:53 +02:00

14 lines
272 B
JavaScript

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