Cristiano Magro
2024-12-30 ff5308ea297afc7cfe89049f58842a2a3a9c94cf
commit | author | age
bc995b 1 <template>
CM 2     <div>
3         <h2>Utente: {{ username }}</h2>
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>