mirror of
https://github.com/nextcloud/server.git
synced 2025-04-28 02:52:59 +00:00
12 lines
282 B
TypeScript
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',
|
|
})
|