mirror of
https://github.com/nextcloud/server.git
synced 2026-04-15 22:11:17 -04:00
10 lines
304 B
TypeScript
10 lines
304 B
TypeScript
/*!
|
|
* SPDX-FileCopyrightText: 2026 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
import { createApp } from 'vue'
|
|
import SettingsPersonal from './views/SettingsPersonal.vue'
|
|
|
|
const app = createApp(SettingsPersonal)
|
|
app.mount('#encryption-settings-section')
|