mirror of
https://github.com/nextcloud/guests.git
synced 2025-08-16 17:08:20 +00:00
15 lines
350 B
JavaScript
15 lines
350 B
JavaScript
/**
|
|
* SPDX-FileCopyrightText: 2019 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
import Vue from 'vue'
|
|
|
|
import GuestSettings from './views/GuestSettings.vue'
|
|
import Nextcloud from './mixins/Nextcloud.js'
|
|
|
|
Vue.mixin(Nextcloud)
|
|
|
|
const settings = new Vue(GuestSettings)
|
|
settings.$mount('#guest-settings')
|