possibly working GUI, compiling missing

This commit is contained in:
2023-06-03 11:34:39 +02:00
parent 58e114e368
commit bf2931085f
13 changed files with 186 additions and 26 deletions

View File

@@ -16,11 +16,17 @@ export default {
methods: {
run() {
fetch( 'http://127.0.0.1:8081/api/getEngines' ).then( res => {
console.log( res );
res.json().then( data => {
this.engines = data.body;
} );
} ).catch( error => {
console.log( error );
} );
}
},
created() {
this.run();
}
}
</script>