From 53530ca91e01cdab4eab3cab990408dcd2745686 Mon Sep 17 00:00:00 2001 From: bmauger Date: Wed, 6 Oct 2021 09:32:58 -0400 Subject: [PATCH] Revert App.vue, add Funnel1.vue. --- public/index.html | 2 +- src/App.vue | 49 +++++++++++++++-------------------------------- src/Funnel1.vue | 45 +++++++++++++++++++++++++++++++++++++++++++ src/main.js | 4 ++-- 4 files changed, 63 insertions(+), 37 deletions(-) create mode 100644 src/Funnel1.vue diff --git a/public/index.html b/public/index.html index 84665a8b4..351892a4e 100644 --- a/public/index.html +++ b/public/index.html @@ -14,7 +14,7 @@ -
+
diff --git a/src/App.vue b/src/App.vue index a30f90bd8..1982e117d 100644 --- a/src/App.vue +++ b/src/App.vue @@ -1,45 +1,26 @@ diff --git a/src/Funnel1.vue b/src/Funnel1.vue new file mode 100644 index 000000000..a30f90bd8 --- /dev/null +++ b/src/Funnel1.vue @@ -0,0 +1,45 @@ + + + diff --git a/src/main.js b/src/main.js index e9f222d1e..b0b4e2c36 100644 --- a/src/main.js +++ b/src/main.js @@ -1,5 +1,5 @@ import { createApp } from "vue"; -import App from "./App.vue"; +import Funnel1 from "./Funnel1.vue"; //Bootstrap JavaScript import "../node_modules/bootstrap/dist/js/bootstrap.js"; @@ -7,4 +7,4 @@ import "../node_modules/bootstrap/dist/js/bootstrap.js"; //Get Bootstrap and Custom Styles import "./assets/scss/custom.scss"; -createApp(App).mount("#app") +createApp(Funnel1).mount("#Funnel1");