This commit is contained in:
2024-09-28 17:37:29 +02:00
parent 8dfafa9404
commit fb4d566007
64 changed files with 32325 additions and 573 deletions
@@ -0,0 +1 @@
<div>[[ this.$route.params.id ]]</div>
@@ -0,0 +1,26 @@
ItemRelationDetail = {
template: "#ItemRelationDetail",
router_path: "/ItemRelationDetail/:id",
delimiters: ["[[", "]]"],
data: function() {
return {
data: null
}
},
mounted: function() {
this.reload()
},
methods: {
async reload () {
const response = await this.$http.get(Urls["items:relation.details"](this.$route.params.id))
}
}
}