mirror of
https://github.com/nextcloud/server.git
synced 2026-04-10 19:47:30 -04:00
- migrate all components to Typescript - use script setup where feasible - migrate to Vue 3 Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
13 lines
358 B
TypeScript
13 lines
358 B
TypeScript
/*!
|
|
* SPDX-FileCopyrightText: 2022 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
import { createApp } from 'vue'
|
|
import AdminTheming from './views/AdminTheming.vue'
|
|
|
|
import 'vite/modulepreload-polyfill'
|
|
|
|
const app = createApp(AdminTheming)
|
|
app.config.idPrefix = 'settings'
|
|
app.mount('#settings-admin-theming')
|