mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-05-03 16:26:56 +08:00
22 lines
365 B
Vue
22 lines
365 B
Vue
<template>
|
|
<div class="right">{{initialState.userName}}</div>
|
|
</template>
|
|
<script>
|
|
import { useModel } from '@fesjs/fes';
|
|
|
|
export default {
|
|
setup() {
|
|
const initialState = useModel('@@initialState');
|
|
return {
|
|
initialState
|
|
};
|
|
}
|
|
};
|
|
</script>
|
|
<style scope>
|
|
.right {
|
|
text-align: right;
|
|
padding: 0 20px;
|
|
}
|
|
</style>
|