mirror of
https://github.com/nextcloud/server.git
synced 2026-05-20 00:49:19 -04:00
10 lines
293 B
TypeScript
10 lines
293 B
TypeScript
/*!
|
|
* SPDX-FileCopyrightText: 2026 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
import { createApp } from 'vue'
|
|
import AdminSettings from './views/AdminSettings.vue'
|
|
|
|
const app = createApp(AdminSettings)
|
|
app.mount('#federation-admin-settings')
|