From 3cfcc7cbddd5ec164413c1f6991908e2ce88cf2e Mon Sep 17 00:00:00 2001 From: Andy Date: Wed, 29 Jul 2020 19:18:33 -0400 Subject: [PATCH] L10 starting --- index.html | 2 +- main.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index 535269a..75495fd 100644 --- a/index.html +++ b/index.html @@ -12,7 +12,7 @@
-
Cart({{ cart.length }})
+
Cart({{ cart }})
diff --git a/main.js b/main.js index 73bdcdc..c252e16 100644 --- a/main.js +++ b/main.js @@ -1,7 +1,7 @@ const app = Vue.createApp({ data() { return { - cart: [], + cart: 0, premium: true } },