blob: 892a4cbd169db8ff45247a164b41d01e33aa5b44 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/**
* SPDX-FileCopyrightText: 2023 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
import { getCSPNonce } from '@nextcloud/auth'
import Vue from 'vue'
import SystemTagsSection from './views/SystemTagsSection.vue'
__webpack_nonce__ = getCSPNonce()
const SystemTagsSectionView = Vue.extend(SystemTagsSection)
new SystemTagsSectionView().$mount('#vue-admin-systemtags')
|