nextcloud/apps/encryption/src/settings-admin.ts
Ferdinand Thiessen 108858daef
refactor(encryption): migrate to Vue 3 and Typescript and script setup
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
2026-01-13 22:49:18 +01:00

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