mirror of
https://github.com/nextcloud/server.git
synced 2026-04-15 22:11:17 -04:00
10 lines
294 B
TypeScript
10 lines
294 B
TypeScript
/**
|
|
* SPDX-FileCopyrightText: 2022 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
import { createApp } from 'vue'
|
|
import AdminSettings from './components/AdminSettings.vue'
|
|
|
|
const app = createApp(AdminSettings)
|
|
app.mount('#vue-admin-sharebymail')
|