mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-05 19:41:57 +08:00
22 lines
369 B
Vue
22 lines
369 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>
|