mirror of
https://github.com/nextcloud/server.git
synced 2026-04-28 17:48:40 -04:00
14 lines
411 B
TypeScript
14 lines
411 B
TypeScript
/**
|
|
* SPDX-FileCopyrightText: 2024 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
import { getCSPNonce } from '@nextcloud/auth'
|
|
import Vue from 'vue'
|
|
import PublicPageUserMenu from './views/PublicPageUserMenu.vue'
|
|
|
|
__webpack_nonce__ = getCSPNonce()
|
|
|
|
const View = Vue.extend(PublicPageUserMenu)
|
|
const instance = new View()
|
|
instance.$mount('#public-page-user-menu')
|