summaryrefslogtreecommitdiff
path: root/iridescence/src/components/admin/NewProduct.vue
blob: b8d8dd211e3f660ce73d77b7e6f37af02f8ad4b0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<template>
  <div id="addNewProduct">
    <button class="button is-primary">
      + Add New
    </button>
  </div>
</template>

<script>
export default {
  name: "AddNewProduct",
  props: {},
  watch: {},
  computed: {},
  methods: {}
};
</script>