mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2026-07-13 05:01:10 +08:00
19 lines
288 B
Vue
19 lines
288 B
Vue
<script setup lang="ts">
|
|
import { useModel } from '@fesjs/fes'
|
|
|
|
const initialState = useModel('@@initialState')
|
|
</script>
|
|
|
|
<template>
|
|
<div class="right">
|
|
{{ initialState.userName }}
|
|
</div>
|
|
</template>
|
|
|
|
<style scope>
|
|
.right {
|
|
text-align: right;
|
|
padding: 0 20px;
|
|
}
|
|
</style>
|