nextcloud/core/src/public-page-user-menu.ts
Ferdinand Thiessen 91f3b6b4ee
chore: adjust code to new codestyle
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
2025-10-02 13:19:42 +02:00

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')