Cristiano Magro
2024-12-30 bc995be0fbd1d9fce806a9280f91770d0d810675
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<template>
    <div>
        <h2>Utente: {{ username }}</h2>
        <h3>Eta: {{ age }}</h3>
    </div>
</template>
 
<script>
export default {
    props: {
        username: {
            title: String,
            required: true
        },
        age: {
            title: String,
            required: true
        },
    }
}
</script>