mirror of
https://github.com/nextcloud/server.git
synced 2026-02-25 02:44:57 -05:00
10 lines
295 B
TypeScript
10 lines
295 B
TypeScript
/*!
|
|
* SPDX-FileCopyrightText: 2026 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
import { createApp } from 'vue'
|
|
import SettingsAdmin from './views/SettingsAdmin.vue'
|
|
|
|
const app = createApp(SettingsAdmin)
|
|
app.mount('#encryption-settings-section')
|