Cristiano Magro
2024-12-30 c65c4fb21f23d097188dcc941c04b4b6ee72381b
commit | author | age
bc995b 1 <template>
05275d 2     <div class="user">
bc995b 3         <h2>Utente: {{ username }}</h2>
CM 4         <h3>Eta: {{ age }}</h3>
5     </div>
6 </template>
7
8 <script>
9 export default {
10     props: {
11         username: {
12             title: String,
ff5308 13             required: true,
bc995b 14         },
CM 15         age: {
16             title: String,
ff5308 17             required: true,
bc995b 18         },
CM 19     }
20 }
21 </script>