add settings page (frontend currently broken!)

This commit is contained in:
2023-05-31 12:00:27 +02:00
parent 619e24d332
commit bf4e85f6c1
7 changed files with 98 additions and 10 deletions

View File

@@ -23,7 +23,6 @@ export default {
appVersion: 'V1.1.0',
latestVersion: '',
isUpToDate: true,
releaseInfos: '',
}
},
mounted () {

View File

@@ -0,0 +1,18 @@
<template>
<div class="about">
<h1>Settings</h1>
<h3>Engines</h3>
</div>
</template>
<script>
import run_script from '@/background.js'
export default {
methods: {
run() {
run_script( 'ls' )
}
}
}
</script>