This commit is contained in:
zyj
2025-09-19 00:27:19 +08:00
commit 0c2a78f91b
50 changed files with 11293 additions and 0 deletions

27
frontend/app/app.vue Normal file
View File

@@ -0,0 +1,27 @@
<template>
<div class="container">
<div>
<a data-wml-openURL="https://wails.io">
<img src="/wails.png" class="logo" alt="Wails logo"/>
</a>
<a data-wml-openURL="https://vuejs.org/">
<img src="/vue.svg" class="logo vue" alt="Vue logo"/>
</a>
</div>
<HelloWorld msg="Wails + Vue" />
</div>
</template>
<style scoped>
@import "../public/style.css";
.logo {
height: 6em;
padding: 1.5em;
will-change: filter;
}
.logo:hover {
filter: drop-shadow(0 0 2em #e80000aa);
}
.logo.vue:hover {
filter: drop-shadow(0 0 2em #42b883aa);
}
</style>