27 lines
441 B
JavaScript
27 lines
441 B
JavaScript
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))
|
|
|
|
}
|
|
}
|
|
}
|