diff options
author | Adam T. Carpenter <atc@53hor.net> | 2020-09-25 18:51:24 -0400 |
---|---|---|
committer | Adam T. Carpenter <atc@53hor.net> | 2020-09-25 18:51:24 -0400 |
commit | 97af17e716c06d8c81f4e380c5a467c5d14daac9 (patch) | |
tree | a645d3c441e92bb14342826f7f0eccecc059f13f /iridescence/src/App.vue | |
parent | 74c5bb3fa6fd725685ad549c972ec0dee58f1b6b (diff) | |
download | theglassyladies-97af17e716c06d8c81f4e380c5a467c5d14daac9.tar.xz theglassyladies-97af17e716c06d8c81f4e380c5a467c5d14daac9.zip |
browser image parsing to base64/dataURL complete; further work on new product, added animate.css just for testing
Diffstat (limited to 'iridescence/src/App.vue')
-rw-r--r-- | iridescence/src/App.vue | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/iridescence/src/App.vue b/iridescence/src/App.vue index 67e5d39..81a549c 100644 --- a/iridescence/src/App.vue +++ b/iridescence/src/App.vue @@ -1,18 +1,21 @@ <template> <div id="app"> <Navbar></Navbar> + <BusyBar></BusyBar> <router-view /> <Footer></Footer> </div> </template> <script> +import BusyBar from "@/components/BusyBar.vue"; import Navbar from "@/components/Navbar.vue"; import Footer from "@/components/Footer.vue"; export default { name: "App", components: { + BusyBar, Navbar, Footer } @@ -21,4 +24,5 @@ export default { <style lang="scss"> @use "../node_modules/bulma/bulma.sass"; +@use "../node_modules/animate.css/animate.min.css"; </style> |