Skip to content
Snippets Groups Projects
EditItemView.vue 308 B
Newer Older
Gilgard's avatar
Gilgard committed
<template>
  <!-- A view for editing the item -->
Gilgard's avatar
Gilgard committed
  <div class="h-screen grid md:mt-8">
    <edit-item-form/>
Gilgard's avatar
Gilgard committed
  </div>
</template>

<script>
import EditItemForm from "@/components/ItemComponents/EditItemForm.vue";

export default {
  name: "EditItemView",
  components: {
    EditItemForm,
  },
};
</script>