commit | author | age
|
81c155
|
1 |
<template> |
I |
2 |
<div class="myFriend"> |
|
3 |
<a-form-model ref="myForm" :model="form" :label-col="labelCol" :wrapper-col="wrapperCol"> |
|
4 |
<div style="display: flex;justify-content: center; "> |
|
5 |
<a-form-model-item label="昵称"> |
|
6 |
<a-input v-model="form.secret" autocomplete='new-password' type="password" placeholder="昵称"> |
|
7 |
</a-input> |
|
8 |
</a-form-model-item> |
|
9 |
<a-form-model-item label="邮箱"> |
|
10 |
<a-input v-model="form.secret" autocomplete='new-password' type="password" placeholder="邮箱"> |
|
11 |
</a-input> |
|
12 |
</a-form-model-item> |
|
13 |
<a-form-model-item label="主页"> |
|
14 |
<a-input v-model="form.secret" autocomplete='new-password' type="password" placeholder="主页"> |
|
15 |
</a-input> |
|
16 |
</a-form-model-item> |
|
17 |
</div> |
|
18 |
</a-form-model> |
|
19 |
|
|
20 |
|
|
21 |
<a-comment> |
|
22 |
<!-- <a-avatar slot="avatar" src="https://zos.alipayobjects.com/rmsportal/ODTLcjxAfvqbxHnVXCYX.png" |
|
23 |
alt="Han Solo" /> --> |
|
24 |
<div slot="content"> |
|
25 |
<a-form-item> |
|
26 |
<a-textarea :rows="4" :value="value" @change="handleChange" /> |
|
27 |
</a-form-item> |
|
28 |
<a-form-item> |
|
29 |
<a-button html-type="submit" :loading="submitting" type="primary" @click="handleSubmit"> |
|
30 |
高低整两句 |
|
31 |
</a-button> |
|
32 |
</a-form-item> |
|
33 |
</div> |
|
34 |
</a-comment> |
|
35 |
|
|
36 |
<a-comment> |
|
37 |
<span slot="actions" key="comment-nested-reply-to">Reply to</span> |
|
38 |
<a slot="author">Han Solo</a> |
|
39 |
<a-avatar slot="avatar" src="https://zos.alipayobjects.com/rmsportal/ODTLcjxAfvqbxHnVXCYX.png" |
|
40 |
alt="Han Solo" /> |
|
41 |
<p slot="content"> |
|
42 |
We supply a series of design principles, practical patterns and high quality design resources |
|
43 |
(Sketch and Axure). |
|
44 |
</p> |
|
45 |
<a-collapse v-model="activeKey"> |
|
46 |
<a-collapse-panel key="1" header="展开"> |
|
47 |
<a-comment> |
|
48 |
<span slot="actions">Reply to</span> |
|
49 |
<a slot="author">Han Solo</a> |
|
50 |
<a-avatar slot="avatar" src="https://zos.alipayobjects.com/rmsportal/ODTLcjxAfvqbxHnVXCYX.png" |
|
51 |
alt="Han Solo" /> |
|
52 |
<p slot="content"> |
|
53 |
We supply a series of design principles, practical patterns and high quality design |
|
54 |
resources (Sketch and Axure). |
|
55 |
</p> |
|
56 |
<a-comment> |
|
57 |
<span slot="actions">Reply to</span> |
|
58 |
<a slot="author">Han Solo</a> |
|
59 |
<a-avatar slot="avatar" |
|
60 |
src="https://zos.alipayobjects.com/rmsportal/ODTLcjxAfvqbxHnVXCYX.png" alt="Han Solo" /> |
|
61 |
<p slot="content"> |
|
62 |
We supply a series of design principles, practical patterns and high quality design |
|
63 |
resources (Sketch and Axure). |
|
64 |
</p> |
|
65 |
</a-comment> |
|
66 |
<a-comment> |
|
67 |
<span slot="actions">Reply to</span> |
|
68 |
<a slot="author">Han Solo</a> |
|
69 |
<a-avatar slot="avatar" |
|
70 |
src="https://zos.alipayobjects.com/rmsportal/ODTLcjxAfvqbxHnVXCYX.png" alt="Han Solo" /> |
|
71 |
<p slot="content"> |
|
72 |
We supply a series of design principles, practical patterns and high quality design |
|
73 |
resources (Sketch and Axure). |
|
74 |
</p> |
|
75 |
</a-comment> |
|
76 |
</a-comment> |
|
77 |
</a-collapse-panel> |
|
78 |
</a-collapse> |
|
79 |
</a-comment> |
|
80 |
<a-comment> |
|
81 |
<span slot="actions">Reply to</span> |
|
82 |
<a slot="author">Han Solo</a> |
|
83 |
<a-avatar slot="avatar" |
|
84 |
src="https://zos.alipayobjects.com/rmsportal/ODTLcjxAfvqbxHnVXCYX.png" alt="Han Solo" /> |
|
85 |
<p slot="content"> |
|
86 |
We supply a series of design principles, practical patterns and high quality design |
|
87 |
resources (Sketch and Axure). |
|
88 |
</p> |
|
89 |
</a-comment> |
|
90 |
</a-comment> |
|
91 |
</div> |
|
92 |
</template> |
|
93 |
|
|
94 |
|
|
95 |
<script> |
|
96 |
export default { |
|
97 |
data() { |
|
98 |
return { |
|
99 |
labelCol: { |
|
100 |
span: 5, |
|
101 |
offset: 0, |
|
102 |
}, |
|
103 |
wrapperCol: { |
|
104 |
span: 15, |
|
105 |
offset: 0 |
|
106 |
}, |
|
107 |
form: { |
|
108 |
secret: "" |
|
109 |
} |
|
110 |
} |
|
111 |
} |
|
112 |
} |
|
113 |
</script> |
|
114 |
|
|
115 |
<style> |
|
116 |
</style> |