mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-06-30 02:35:08 +08:00
21 lines
367 B
Vue
21 lines
367 B
Vue
<template>
|
|
<div class="user-center">{{ initialState.userName }}</div>
|
|
</template>
|
|
<script>
|
|
import { useModel } from '@fesjs/fes';
|
|
|
|
export default {
|
|
setup() {
|
|
const initialState = useModel('@@initialState');
|
|
return {
|
|
initialState,
|
|
};
|
|
},
|
|
};
|
|
</script>
|
|
<style lang="less">
|
|
.user-center {
|
|
text-align: center;
|
|
}
|
|
</style>
|