file: code/AddComment.vue 46: methods: { 47: storeComment(){ 48: this.axios.post(this.replyTo, { 49: body: this.body, 50: user_name: this.username 51: }).then(() => { 52: window.location.reload(); 53: }); 54: },
another method