mirror of
https://github.com/nextcloud/server.git
synced 2026-02-16 09:19:43 -05:00
22 lines
336 B
Vue
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>
|