summaryrefslogtreecommitdiffstats
path: root/core/src/login.js
blob: 29affcda762bd04c93ebbaf9ee6e69ff1a567d35 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/**
 * SPDX-FileCopyrightText: 2019 Nextcloud GmbH and Nextcloud contributors
 * SPDX-License-Identifier: AGPL-3.0-or-later
 */

import Vue from 'vue'

// eslint-disable-next-line no-unused-vars
import OC from './OC/index.js' // TODO: Not needed but L10n breaks if removed
import LoginView from './views/Login.vue'
import Nextcloud from './mixins/Nextcloud.js'

Vue.mixin(Nextcloud)

const View = Vue.extend(LoginView)
new View().$mount('#login')