aboutsummaryrefslogtreecommitdiffstats
path: root/apps/updatenotification/src/view-changelog-page.ts
blob: d7f8e84680dd87b0243888fa351f45761001551c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/**
 * 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',
})