This commit is contained in:
shikong 2024-02-18 17:07:46 +08:00
parent fb0d46f503
commit a7af27c68f
5 changed files with 7 additions and 3 deletions

1
.gitignore vendored
View File

@ -62,3 +62,4 @@ npm-debug.log
yarn-error.log
/config.toml
/build/bin/config.toml

View File

@ -1,6 +1,7 @@
{
"name": "wails-app-dock",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"dev": "vite",
"build": "run-p type-check build-only",

View File

@ -1 +1 @@
2cebb93a499e5e74a2fa3220fcf480b2
17691e1d827cc40ab9ca3fff6eb7aa05

View File

@ -1,9 +1,9 @@
<script setup lang="ts">
import {useWindowSize} from "@vueuse/core";
defineProps<{
msg: string;
}>();
import {useWindowSize} from "@vueuse/core";
const { width, height } = useWindowSize()
</script>

View File

@ -5,7 +5,9 @@
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"]
}
},
"strict": false,
"noImplicitAny": false
},
"references": [