blob: 85d6a147f84011a9980c253ad2bba76b3c6dc467 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<template>
<div id="admin">
<div class="container">
<section class="section">
<ProductEditList></ProductEditList>
</section>
</div>
</div>
</template>
<script>
import ProductEditList from "@/components/admin/ProductEditList.vue";
export default {
name: "Admin",
components: {
ProductEditList
}
};
</script>
|