26 lines
724 B
Vue
26 lines
724 B
Vue
<template>
|
|
<div c-c f style="height: calc(100vh - 66px - 20px)">
|
|
<n-spin :delay="1000" :show="false">
|
|
<n-card
|
|
:segmented="{
|
|
content: true,
|
|
footer: 'soft',
|
|
}"
|
|
style="width: 430px"
|
|
title="登录">
|
|
<n-form border label-align="right" label-placement="left" label-width="auto">
|
|
<n-form-item label="用户名">
|
|
<n-input />
|
|
</n-form-item>
|
|
<n-form-item label="密码">
|
|
<n-input />
|
|
</n-form-item>
|
|
</n-form>
|
|
<n-button block secondary strong type="primary">登录</n-button>
|
|
</n-card>
|
|
</n-spin>
|
|
</div>
|
|
</template>
|
|
<script lang="ts" setup></script>
|
|
<style scoped></style>
|