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
22
23
24
25
26
import { createApp } from 'vue'
 
import App from "./App.vue";
import ActiveUser from "./components/ActiveUser.vue";
import UserData from "./components/UserData.vue";
 
 
const app = createApp(App);
 
app.component("active-user", ActiveUser);
app.component("user-data", UserData);
 
app.mount('#app')
 
// Task 1: 
// Add two components to the app: 
// An ActiveUser component and an UserData component
// ActiveUser should output a username (h2) and age (h3)
// UserData should output two input fields => for name and age
// Optional: Add styling of your choice
 
// Task 2: Output both components side-by-side in your main App template
 
// Task 3: Add user data and ensure it contains a name and age
// User data should be output in ActiveUser
// It should be updated via the UserData component