nextcloud/apps/dav/src/settings-example-content.js
Richard Steinmetz 4a6909ffef
feat: create example event when a user logs in for the first time
Signed-off-by: Richard Steinmetz <richard@steinmetz.cloud>
2025-06-16 11:49:20 +02:00

18 lines
453 B
JavaScript

/**
* 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 ExampleContentSettingsSection from './views/ExampleContentSettingsSection.vue'
Vue.mixin({
methods: {
t: translate,
$t: translate,
}
})
const View = Vue.extend(ExampleContentSettingsSection);
(new View({})).$mount('#settings-example-content')