summaryrefslogtreecommitdiff
path: root/iridescence/src/views/Admin.vue
blob: ec02e070be3e6b4d4ff22dbbc32f36affdd06d20 (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="admin">
    <div class="container">
      <section class="section">
        <ProductSearch></ProductSearch>
        <ProductEditList></ProductEditList>
      </section>
    </div>
  </div>
</template>

<script>
import ProductSearch from "@/components/ProductSearch.vue";
import ProductEditList from "@/components/admin/ProductEditList.vue";

export default {
  name: "Admin",
  components: {
    ProductEditList,
    ProductSearch
  }
};
</script>