This commit is contained in:
2024-01-10 18:49:07 +11:00
parent eb242ae4af
commit bfee31c0db
29 changed files with 83 additions and 235 deletions

View File

@@ -0,0 +1,30 @@
<template>
<div class="about">
<h1>Settings</h1>
<p>WIP!</p>
</div>
</template>
<script>
export default {
data() {
return {
engines: '',
}
},
methods: {
run() {
fetch( 'http://127.0.0.1:49369/api/getEngines' ).then( res => {
console.log( res );
res.json().then( data => {
this.engines = data.body;
} );
} ).catch( error => {
console.log( error );
} );
}
},
created() {
}
}
</script>