bookmarks/src/admin.js

23 lines
611 B
JavaScript
Raw Permalink Normal View History

2020-09-21 12:25:50 +00:00
/*
* Copyright (c) 2020-2024. The Nextcloud Bookmarks contributors.
2019-08-28 22:35:15 +00:00
*
2020-09-21 12:25:50 +00:00
* This file is licensed under the Affero General Public License version 3 or later. See the COPYING file.
2019-08-28 22:35:15 +00:00
*/
import Vue from 'vue'
import { Tooltip } from '@nextcloud/vue'
import App from './components/ViewAdmin.vue'
import store from './store/index.js'
import AppGlobal from './mixins/AppGlobal.js'
import { Store } from 'vuex'
2019-08-28 22:35:15 +00:00
Vue.mixin(AppGlobal)
Vue.directive('tooltip', Tooltip)
2019-08-28 22:35:15 +00:00
const BookmarksApp = (global.Bookmarks = new Vue({
2019-08-28 22:35:15 +00:00
el: '#bookmarks',
store: new Store(store),
render: h => h(App),
}))
2019-08-28 22:35:15 +00:00
export default BookmarksApp