You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
418 B
22 lines
418 B
<template>
|
|
<SettingEditForm
|
|
provider-name="U"
|
|
:provider-key="userId"
|
|
/>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { Component, Prop, Vue } from 'vue-property-decorator'
|
|
import SettingEditForm from './SettingEditForm.vue'
|
|
|
|
@Component({
|
|
name: 'TenantSettingEditForm',
|
|
components: {
|
|
SettingEditForm
|
|
}
|
|
})
|
|
export default class extends Vue {
|
|
@Prop({ default: '' })
|
|
private userId?: string
|
|
}
|
|
</script>
|
|
|