mirror of
https://github.com/nextcloud/server.git
synced 2026-06-12 10:10:49 -04:00
21 lines
531 B
JavaScript
21 lines
531 B
JavaScript
/**
|
|
* SPDX-FileCopyrightText: 2022 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
import Vue from 'vue'
|
|
|
|
import PasswordSection from './components/PasswordSection.vue'
|
|
import { translate as t, translatePlural as n } from '@nextcloud/l10n'
|
|
|
|
// eslint-disable-next-line camelcase
|
|
__webpack_nonce__ = btoa(OC.requestToken)
|
|
|
|
Vue.prototype.t = t
|
|
Vue.prototype.n = n
|
|
|
|
export default new Vue({
|
|
el: '#security-password',
|
|
name: 'main-personal-password',
|
|
render: h => h(PasswordSection),
|
|
})
|