route.params.id); }, methods: { getUser(id) { const vm = this vm.$http.get('/api/users/' + id) .then(response => { vm.user = response.data }) } }, watch: ...
確定! 回上一頁