Cristiano Magro
2024-12-30 ac100de8d8e0fc85e34cde9aec6262259b12f96c
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>