aboutsummaryrefslogtreecommitdiff
path: root/src-vue/src
diff options
context:
space:
mode:
authorGeckoEidechse <gecko.eidechse+git@pm.me>2024-12-23 20:18:13 +0100
committerGeckoEidechse <gecko.eidechse+git@pm.me>2024-12-23 20:18:13 +0100
commitb312976dc76aad052b536f5d980534e4fd5e9eb9 (patch)
tree953f30e6498f68d193dbe87511e29cdd9598f901 /src-vue/src
parente809f17ce3703dbffc32b24b4fd4cf81dcd93a0b (diff)
downloadFlightCore-b312976dc76aad052b536f5d980534e4fd5e9eb9.tar.gz
FlightCore-b312976dc76aad052b536f5d980534e4fd5e9eb9.zip
feat: Copy over more structure from main branch
Diffstat (limited to 'src-vue/src')
-rw-r--r--src-vue/src/App.vue17
1 files changed, 17 insertions, 0 deletions
diff --git a/src-vue/src/App.vue b/src-vue/src/App.vue
index cb588bf6..7d7cd27b 100644
--- a/src-vue/src/App.vue
+++ b/src-vue/src/App.vue
@@ -9,6 +9,23 @@ async function greet() {
// Learn more about Tauri commands at https://tauri.app/develop/calling-rust/
greetMsg.value = await invoke("greet", { name: name.value });
}
+
+export default {
+ components: {
+ },
+ data() {
+ return {}
+ },
+ mounted: async function() {
+ },
+ methods: {
+ close() {
+ invoke("close_application");
+ }
+ },
+ computed: {
+ }
+}
</script>
<template>