nextcloud/apps/encryption/src/settings-admin.ts

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
295 B
TypeScript
Raw Normal View History

/*!
* 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')