summaryrefslogtreecommitdiff
path: root/iridescence/src/components/admin/NewProductModal.vue
diff options
context:
space:
mode:
authorAdam T. Carpenter <atc@53hor.net>2020-09-25 18:51:24 -0400
committerAdam T. Carpenter <atc@53hor.net>2020-09-25 18:51:24 -0400
commit97af17e716c06d8c81f4e380c5a467c5d14daac9 (patch)
treea645d3c441e92bb14342826f7f0eccecc059f13f /iridescence/src/components/admin/NewProductModal.vue
parent74c5bb3fa6fd725685ad549c972ec0dee58f1b6b (diff)
downloadtheglassyladies-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/components/admin/NewProductModal.vue')
-rw-r--r--iridescence/src/components/admin/NewProductModal.vue45
1 files changed, 0 insertions, 45 deletions
diff --git a/iridescence/src/components/admin/NewProductModal.vue b/iridescence/src/components/admin/NewProductModal.vue
deleted file mode 100644
index 8df0faa..0000000
--- a/iridescence/src/components/admin/NewProductModal.vue
+++ /dev/null
@@ -1,45 +0,0 @@
-<template>
- <div class="modal " id="newProductModal">
- <div class="modal-background"></div>
- <div class="modal-card">
- <header class="modal-card-head">
- <p class="modal-card-title"></p>
- <button class="delete" aria-label="close"></button>
- </header>
- <section class="modal-card-body">
- <ProductEditCard v-bind:current-product="product"></ProductEditCard>
- </section>
- <footer class="modal-card-foot">
- <label class="checkbox">
- <input type="checkbox" v-model="addAnother" />
- Add Another?
- </label>
- </footer>
- </div>
- </div>
-</template>
-
-<script>
-import ProductEditCard from "@/components/admin/ProductEditCard.vue";
-export default {
- name: "NewProductModal",
- components: {
- ProductEditCard
- },
- data: function() {
- return {
- product: {
- id: 0,
- name: "",
- quantity: 0,
- cents: 0,
- imgPath: "",
- description: "",
- featured: false,
- categories: []
- },
- addAnother: false
- };
- }
-};
-</script>