This repository has been archived on 2021-09-06. You can view files and clone it, but cannot push or open issues or pull requests.
vuejs_course/cmp-communication-assignmen.../src/main.js

16 lines
554 B
JavaScript

import { createApp } from 'vue'
createApp({}).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