You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nextcloud-server/apps/profile/src/main.ts

16 lines
449 B

/*
* SPDX-FileCopyrightText: 2021 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
import { createApp } from 'vue'
import ProfileApp from './views/ProfileApp.vue'
import ProfileSections from './services/ProfileSections.js'
import 'vite/modulepreload-polyfill'
window.OCA.Profile ??= {}
window.OCA.Profile.ProfileSections = new ProfileSections()
const app = createApp(ProfileApp)
app.mount('#content')