V0.1
This commit is contained in:
@@ -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))
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user