summaryrefslogtreecommitdiff
path: root/iridescence/src/components/admin/NewProductModal.vue
diff options
context:
space:
mode:
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>