mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-05 19:41:57 +08:00
16 lines
273 B
Vue
16 lines
273 B
Vue
<template>
|
|
<div>{{initialState.userName}}</div>
|
|
</template>
|
|
<script>
|
|
import { useModel } from '@fesjs/fes';
|
|
|
|
export default {
|
|
setup() {
|
|
const initialState = useModel('@@initialState');
|
|
return {
|
|
initialState
|
|
};
|
|
}
|
|
};
|
|
</script>
|