nextcloud/apps/files/src/components/Setting.vue
Andy Scherzinger 5b7dcc1427
chore: Add SPDX header
Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
2024-05-29 08:58:16 +02:00

22 lines
336 B
Vue

<!--
- 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>