mirror of
https://github.com/nextcloud/server.git
synced 2026-03-25 03:43:45 -04:00
17 lines
440 B
TypeScript
17 lines
440 B
TypeScript
/**
|
|
* SPDX-FileCopyrightText: 2018 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
import { loadState } from '@nextcloud/initial-state'
|
|
import { createApp } from 'vue'
|
|
import AdminSettings from './views/AdminSettings.vue'
|
|
|
|
import 'vite/modulepreload-polyfill'
|
|
|
|
const clients = loadState('oauth2', 'clients')
|
|
|
|
const app = createApp(AdminSettings, {
|
|
modelValue: clients,
|
|
})
|
|
app.mount('#oauth2')
|