mirror of
https://github.com/nextcloud/server.git
synced 2026-03-04 18:28:08 +01:00
13 lines
351 B
TypeScript
13 lines
351 B
TypeScript
/**
|
|
* SPDX-FileCopyrightText: 2023 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
import { createApp } from 'vue'
|
|
import LDAPSettingsApp from './views/LDAPSettingsApp.vue'
|
|
import { pinia } from './store/index.ts'
|
|
|
|
const app = createApp(LDAPSettingsApp)
|
|
app.use(pinia)
|
|
app.mount('#content-ldap-settings')
|