summaryrefslogtreecommitdiff
path: root/iridescence/src/components/admin/NewProduct.vue
blob: 51190310b326fa651de28891126c95a46ec442f0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<template>
  <div id="addNewProduct">
    <button class="button is-primary">
      + Add New
    </button>
    <NewProductModal v-if="modalEnabled"></NewProductModal>
  </div>
</template>

<script>
import NewProductModal from "./NewProductModal.vue";
export default {
  name: "AddNewProduct",
  components: {
    NewProductModal
  },
  data: function() {
    return {
      modalEnabled: true
    };
  }
};
</script>