mirror of
https://github.com/nextcloud/server.git
synced 2026-03-14 14:43:06 -04:00
19 lines
419 B
JavaScript
19 lines
419 B
JavaScript
/**
|
|
* SPDX-FileCopyrightText: 2019 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
import Vue from 'vue'
|
|
|
|
import AccountMenu from '../views/AccountMenu.vue'
|
|
|
|
export const setUp = () => {
|
|
const mountPoint = document.getElementById('user-menu')
|
|
if (mountPoint) {
|
|
// eslint-disable-next-line no-new
|
|
new Vue({
|
|
el: mountPoint,
|
|
render: h => h(AccountMenu),
|
|
})
|
|
}
|
|
}
|