mirror of https://github.com/rancher/dashboard.git
20 lines
357 B
Vue
20 lines
357 B
Vue
<script>
|
|
import PrincipalComponent from '@/components/auth/Principal';
|
|
|
|
export default {
|
|
components: { PrincipalComponent },
|
|
props: {
|
|
value: {
|
|
type: String,
|
|
default: ''
|
|
},
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<template>
|
|
<div>
|
|
<PrincipalComponent :key="value" :value="value" :use-muted="false" />
|
|
</div>
|
|
</template>
|