This commit is contained in:
j3d1 2023-05-28 15:32:03 +02:00
parent 2c77077859
commit 3774a2f438
2 changed files with 27 additions and 0 deletions

View file

@ -53,7 +53,21 @@ import {mapActions, mapGetters} from "vuex";
export default {
name: "InventoryDetail",
data() {
return {
item: {
name: "",
description: "",
quantity: 0,
price: 0,
image: "",
tags: [],
properties: []
}
}
},
components: {
PropertyField, TagField,
BaseLayout,
...BIcons
},

View file

@ -61,6 +61,19 @@ import PropertyField from "@/components/PropertyField.vue";
export default {
name: "InventoryEdit",
data() {
return {
item: {
name: "",
description: "",
quantity: 0,
price: 0,
image: "",
tags: [],
properties: []
}
}
},
components: {
BaseLayout,
TagField,