Cristiano Magro
2024-12-30 c73ebb3da855f7bd14a72ff7cbb636b496937d49
esercizio
10 files added
18181 ■■■■■ changed files
07 - development setup/cmp-communication-assignment-problem/.browserslistrc 3 ●●●●● patch | view | raw | blame | history
07 - development setup/cmp-communication-assignment-problem/.eslintrc.js 17 ●●●●● patch | view | raw | blame | history
07 - development setup/cmp-communication-assignment-problem/.gitignore 22 ●●●●● patch | view | raw | blame | history
07 - development setup/cmp-communication-assignment-problem/HOW-TO-USE.pdf patch | view | raw | blame | history
07 - development setup/cmp-communication-assignment-problem/babel.config.js 5 ●●●●● patch | view | raw | blame | history
07 - development setup/cmp-communication-assignment-problem/package-lock.json 18078 ●●●●● patch | view | raw | blame | history
07 - development setup/cmp-communication-assignment-problem/package.json 23 ●●●●● patch | view | raw | blame | history
07 - development setup/cmp-communication-assignment-problem/public/favicon.ico patch | view | raw | blame | history
07 - development setup/cmp-communication-assignment-problem/public/index.html 17 ●●●●● patch | view | raw | blame | history
07 - development setup/cmp-communication-assignment-problem/src/main.js 16 ●●●●● patch | view | raw | blame | history
07 - development setup/cmp-communication-assignment-problem/.browserslistrc
New file
@@ -0,0 +1,3 @@
> 1%
last 2 versions
not dead
07 - development setup/cmp-communication-assignment-problem/.eslintrc.js
New file
@@ -0,0 +1,17 @@
module.exports = {
  root: true,
  env: {
    node: true
  },
  'extends': [
    'plugin:vue/vue3-essential',
    'eslint:recommended'
  ],
  parserOptions: {
    parser: 'babel-eslint'
  },
  rules: {
    'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
    'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off'
  }
}
07 - development setup/cmp-communication-assignment-problem/.gitignore
New file
@@ -0,0 +1,22 @@
.DS_Store
node_modules
/dist
# local env files
.env.local
.env.*.local
# Log files
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
# Editor directories and files
.idea
.vscode
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
07 - development setup/cmp-communication-assignment-problem/HOW-TO-USE.pdf
Binary files differ
07 - development setup/cmp-communication-assignment-problem/babel.config.js
New file
@@ -0,0 +1,5 @@
module.exports = {
  presets: [
    '@vue/cli-plugin-babel/preset'
  ]
}
07 - development setup/cmp-communication-assignment-problem/package-lock.json
New file
Diff too large
07 - development setup/cmp-communication-assignment-problem/package.json
New file
@@ -0,0 +1,23 @@
{
  "name": "vue-first-app",
  "version": "0.1.0",
  "private": true,
  "scripts": {
    "serve": "vue-cli-service serve",
    "build": "vue-cli-service build",
    "lint": "vue-cli-service lint"
  },
  "dependencies": {
    "core-js": "^3.6.5",
    "vue": "^3.0.0"
  },
  "devDependencies": {
    "@vue/cli-plugin-babel": "~4.5.0",
    "@vue/cli-plugin-eslint": "~4.5.0",
    "@vue/cli-service": "~4.5.0",
    "@vue/compiler-sfc": "^3.0.0-0",
    "babel-eslint": "^10.1.0",
    "eslint": "^6.7.2",
    "eslint-plugin-vue": "^7.0.0-0"
  }
}
07 - development setup/cmp-communication-assignment-problem/public/favicon.ico
07 - development setup/cmp-communication-assignment-problem/public/index.html
New file
@@ -0,0 +1,17 @@
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width,initial-scale=1.0">
    <link rel="icon" href="<%= BASE_URL %>favicon.ico">
    <title><%= htmlWebpackPlugin.options.title %></title>
  </head>
  <body>
    <noscript>
      <strong>We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
    </noscript>
    <div id="app"></div>
    <!-- built files will be auto injected -->
  </body>
</html>
07 - development setup/cmp-communication-assignment-problem/src/main.js
New file
@@ -0,0 +1,16 @@
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