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