mirror of
https://github.com/nextcloud/server.git
synced 2026-02-27 18:37:17 +01:00
- migrate deprecated props - use direct import of t rather than the mixin Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
11 lines
340 B
TypeScript
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')
|