aboutsummaryrefslogtreecommitdiffstats
path: root/core/src/components/ContactsMenu.js
blob: 5dd395da34c373c4671c8a3c9c633fac1c3c236a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/**
 * SPDX-FileCopyrightText: 2019 Nextcloud GmbH and Nextcloud contributors
 * SPDX-License-Identifier: AGPL-3.0-or-later
 */

import Vue from 'vue'

import ContactsMenu from '../views/ContactsMenu.vue'

/**
 * @todo move to contacts menu code https://github.com/orgs/nextcloud/projects/31#card-21213129
 */
export const setUp = () => {
	const mountPoint = document.getElementById('contactsmenu')
	if (mountPoint) {
		// eslint-disable-next-line no-new
		new Vue({
			el: mountPoint,
			render: h => h(ContactsMenu),
		})
	}
}