diff options
author | Adam T. Carpenter <atc@53hor.net> | 2020-09-12 14:10:57 -0400 |
---|---|---|
committer | Adam T. Carpenter <atc@53hor.net> | 2020-09-12 14:10:57 -0400 |
commit | 4dffff999d4025ddb593f5f44bf4ecccf577a0e5 (patch) | |
tree | 289a241347e24b0f0963e91256e2b44b70db3ee0 /iridescence/src/views | |
parent | 92b5b5cc69fdd3dfe67ea07a0fcf26bdd3c930f8 (diff) | |
download | theglassyladies-4dffff999d4025ddb593f5f44bf4ecccf577a0e5.tar.xz theglassyladies-4dffff999d4025ddb593f5f44bf4ecccf577a0e5.zip |
basic product editing view with renaming
Diffstat (limited to 'iridescence/src/views')
-rw-r--r-- | iridescence/src/views/Admin.vue | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/iridescence/src/views/Admin.vue b/iridescence/src/views/Admin.vue index 53c5417..85d6a14 100644 --- a/iridescence/src/views/Admin.vue +++ b/iridescence/src/views/Admin.vue @@ -1,10 +1,20 @@ <template> - <h1>this is an admin page</h1> + <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: {} + components: { + ProductEditList + } }; </script> |