mirror of
https://github.com/nextcloud/server.git
synced 2026-05-25 10:49:21 -04:00
- migrate deprecated props - use direct import of t rather than the mixin Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
10 lines
292 B
TypeScript
10 lines
292 B
TypeScript
/**
|
|
* SPDX-FileCopyrightText: 2021 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
import { createApp } from 'vue'
|
|
import CalDavSettings from './views/CalDavSettings.vue'
|
|
|
|
const app = createApp(CalDavSettings)
|
|
app.mount('#settings-admin-caldav')
|