From 0806f6d98fc5d02b6ec63443498d797427075fc9 Mon Sep 17 00:00:00 2001 From: Luis Adrian Silva Reyes <54382882+Luissf1@users.noreply.github.com> Date: Mon, 30 Jan 2023 13:00:55 -0800 Subject: [PATCH] update --- index.html | 11 ++++++++--- main.js | 8 +++++++- 2 files changed, 15 insertions(+), 4 deletions(-) diff --git a/index.html b/index.html index 56c112638..136974c13 100644 --- a/index.html +++ b/index.html @@ -6,14 +6,19 @@ - +
-

Product goes here

+

{{product}}

- + + + + diff --git a/main.js b/main.js index aedc73d86..d38bdeed3 100644 --- a/main.js +++ b/main.js @@ -1 +1,7 @@ -const product = 'Socks' +const app = Vue.createApp({ + data() { + return { + product: 'Socks' + } + } +})