mirror of
https://github.com/nextcloud/server.git
synced 2026-04-21 14:23:17 -04:00
15 lines
415 B
JavaScript
15 lines
415 B
JavaScript
/**
|
|
* SPDX-FileCopyrightText: 2019 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
import { getCSPNonce } from '@nextcloud/auth'
|
|
import Vue from 'vue'
|
|
import PersonalSettings from './components/PersonalSettings.vue'
|
|
|
|
__webpack_nonce__ = getCSPNonce()
|
|
|
|
Vue.prototype.t = t
|
|
|
|
const View = Vue.extend(PersonalSettings)
|
|
new View().$mount('#files-sharing-personal-settings')
|