|
@@ -1,26 +1,8 @@
|
|
|
-<script setup>
|
|
|
-import { ref, } from "vue";
|
|
|
-import { invoke } from "@tauri-apps/api/core";
|
|
|
-
|
|
|
-const greetMsg = ref("");
|
|
|
-const name = ref("");
|
|
|
-
|
|
|
-async function greet() {
|
|
|
- // Learn more about Tauri commands at https://tauri.app/develop/calling-rust/
|
|
|
- greetMsg.value = await invoke("greet", { name: name.value });
|
|
|
-}
|
|
|
-</script>
|
|
|
-
|
|
|
<template>
|
|
|
<RouterView />
|
|
|
</template>
|
|
|
-
|
|
|
-<style scoped>
|
|
|
-
|
|
|
-</style>
|
|
|
<style>
|
|
|
-.hide-bar::-webkit-scrollbar {
|
|
|
- display: none;
|
|
|
-}
|
|
|
-
|
|
|
+ .hide-bar::-webkit-scrollbar {
|
|
|
+ display: none;
|
|
|
+ }
|
|
|
</style>
|