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)) } } }