Cristiano Magro
2024-12-27 6ea2a289bf1344fbf016013f9461ec9d4b46ec84
06 - introducing components/xno-cmp-intro-01-starting-setup/app.js
@@ -1,10 +1,30 @@
const app = Vue.createApp({
  data() {
    return {};
    return {
      detailsAreVisible: false,
      friends: [
        {
          id: "manuel",
          name: "Manuel Lorenz",
          phone: "01234 5678 991",
          email: "manuel@localhost.com",
        },
        {
          id: "julie",
          name: "Julie Jones",
          phone: "09876 543 221",
          email: "julie@localhost.com",
        },
      ],
    };
  },
  computed: {},
  watch: {},
  methods: {},
  methods: {
    toggleDetails() {
      this.detailsAreVisible = !this.detailsAreVisible;
    },
  },
});
app.mount("#app");