0
0
Fork 0
mirror of https://github.com/nextcloud/server.git synced 2025-04-28 02:52:59 +00:00
nextcloud_server/apps/updatenotification/src/view-changelog-page.ts
Andy Scherzinger cc1686dba9
chore: Add SPDX header
Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
2024-05-31 10:38:47 +02:00

12 lines
282 B
TypeScript

/**
* SPDX-FileCopyrightText: 2024 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
import Vue from 'vue'
import App from './views/App.vue'
export default new Vue({
name: 'ViewChangelogPage',
render: (h) => h(App),
el: '#content',
})