diff options
Diffstat (limited to 'apps/files/src/components/Setting.vue')
-rw-r--r-- | apps/files/src/components/Setting.vue | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/apps/files/src/components/Setting.vue b/apps/files/src/components/Setting.vue new file mode 100644 index 00000000000..7a9ffb137a2 --- /dev/null +++ b/apps/files/src/components/Setting.vue @@ -0,0 +1,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> |