Added Ping route and tested backend call
parent
2d7514fc99
commit
59858136e0
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,30 @@
|
||||
<template>
|
||||
<div>
|
||||
<p>{{msg}}</p>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import axios from 'axios';
|
||||
|
||||
export default {
|
||||
name: 'Ping',
|
||||
data() {
|
||||
return {
|
||||
msg: ''
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
getMessage() {
|
||||
const path = 'http://localhost:5000/ping';
|
||||
axios.get(path)
|
||||
.then((res) => {this.msg = res.data})
|
||||
.catch((error) => { console.log(error)})
|
||||
}
|
||||
},
|
||||
created() {
|
||||
this.getMessage()
|
||||
},
|
||||
|
||||
}
|
||||
</script>
|
Loading…
Reference in New Issue