This commit is contained in:
2025-03-07 20:41:21 +07:00
parent bf7037f4e8
commit 96b814d54a
52 changed files with 6643 additions and 782 deletions

View File

@@ -1,42 +0,0 @@
<script setup lang="ts">
import { ref, onMounted } from "vue";
import { Events } from "@wailsio/runtime";
import * as PostService from "../../bindings/app/internal/services/postservice";
const name = ref("");
const result = ref("Please enter your name below 👇");
const time = ref("Listening for Time event...");
const doGreet = () => {
let localName = name.value;
if (!localName) {
localName = "anonymous";
}
};
onMounted(async () => {
console.log(await PostService.GetById(5));
});
</script>
<template>
<h1>Kuzbass</h1>
<div class="result"></div>
<div class="card">
<div class="input-box">
<input
class="input"
v-model="name"
type="text"
autocomplete="off"
/>
<button class="btn" @click="doGreet">Greet</button>
</div>
</div>
<div class="footer">
<div><p>Click on the Wails logo to learn more</p></div>
<div><p></p></div>
</div>
</template>

View File

@@ -0,0 +1,4 @@
<template>
<button class="fixed bottom-6 right-6 aspect-square h-10 text-3xl flex items-center justify-center rounded-full focus-visible:outline-none text-black"
style="background:var(--p-primary-color)"><span class="pi pi-plus"></span></button>
</template>