aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files/src/components/Setting.vue
blob: 7a9ffb137a2fa5cd97768a727d9082bdaa09f71e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!--
  - SPDX-FileCopyrightText: 2020 Nextcloud GmbH and Nextcloud contributors
  - SPDX-License-Identifier: AGPL-3.0-or-later
-->

<template>
	<div />
</template>
<script>
export default {
	name: 'Setting',
	props: {
		el: {
			type: Function,
			required: true,
		},
	},
	mounted() {
		this.$el.appendChild(this.el())
	},
}
</script>