blob: f1374027bf36423bac8d9828caf5df309b534fea (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/**
* SPDX-FileCopyrightText: 2025 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
import Vue from 'vue'
import { translate } from '@nextcloud/l10n'
import ExampleContactSettings from './views/ExampleContactSettings.vue'
Vue.prototype.$t = translate
const View = Vue.extend(ExampleContactSettings);
(new View({})).$mount('#settings-example-content')
|