Files
nextcloud-server-mirror/apps/dav/src/settings-admin-example-content.ts
Ferdinand Thiessen 97b91027da refactor(dav): migrate Settings frontend to Vue 3
- migrate deprecated props
- use direct import of t rather than the mixin

Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
2025-10-23 05:21:46 +02:00

11 lines
340 B
TypeScript

/**
* SPDX-FileCopyrightText: 2025 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
import { createApp } from 'vue'
import ExampleContentSettingsSection from './views/ExampleContentSettingsSection.vue'
const app = createApp(ExampleContentSettingsSection)
app.mount('#settings-example-content')