repod/src/main.js

14 lines
272 B
JavaScript
Raw Normal View History

2024-05-03 16:39:07 +00:00
import { n, t } from '@nextcloud/l10n'
2023-06-23 07:44:48 +00:00
import App from './App.vue'
2023-07-02 16:30:42 +00:00
import Vue from 'vue'
import router from './router.js'
2023-08-28 22:47:22 +00:00
import store from './store/main.js'
2023-06-22 18:10:30 +00:00
Vue.mixin({ methods: { t, n } })
2023-07-07 16:38:53 +00:00
const View = Vue.extend(App)
new View({
2023-07-02 16:30:42 +00:00
router,
2023-07-07 16:38:53 +00:00
store,
}).$mount('#content')