commit | author | age | ||
c65c4f | 1 | <template> |
CM | 2 | <section> |
3 | <h2>{{ username }}</h2> | |
4 | <h3>{{ userage }} Years</h3> | |
5 | </section> | |
6 | </template> | |
7 | ||
8 | <script> | |
9 | export default { | |
10 | props: { | |
11 | username: { | |
12 | type: String, | |
13 | required: true | |
14 | }, | |
15 | userage: { | |
16 | type: Number, | |
17 | required: true | |
18 | } | |
19 | } | |
20 | }; | |
21 | </script> |