-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.vue
35 lines (33 loc) · 991 Bytes
/
app.vue
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<script setup>
const loading = ref(false)
onMounted(() => {})
</script>
<template>
<div
style="
min-height: 100vh;
background: #f4f2f2;
display: flex;
align-items: center;
"
>
<div style="max-width: 400px; margin: 0 auto">
<a-card title="Sample Card" style="width: 100%">
<a-form layout="vertical">
<a-form-item label="Email">
<a-input></a-input>
</a-form-item>
<a-form-item label="password">
<a-input type="password"></a-input>
</a-form-item>
<a-button
type="primary"
:loading="loading"
@click="loading = true"
>Edwin</a-button
>
</a-form>
</a-card>
</div>
</div>
</template>