修正
This commit is contained in:
parent
fb0d46f503
commit
a7af27c68f
1
.gitignore
vendored
1
.gitignore
vendored
@ -62,3 +62,4 @@ npm-debug.log
|
|||||||
yarn-error.log
|
yarn-error.log
|
||||||
|
|
||||||
/config.toml
|
/config.toml
|
||||||
|
/build/bin/config.toml
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "wails-app-dock",
|
"name": "wails-app-dock",
|
||||||
"version": "0.0.0",
|
"version": "0.0.0",
|
||||||
|
"license": "MIT",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "vite",
|
"dev": "vite",
|
||||||
"build": "run-p type-check build-only",
|
"build": "run-p type-check build-only",
|
||||||
|
@ -1 +1 @@
|
|||||||
2cebb93a499e5e74a2fa3220fcf480b2
|
17691e1d827cc40ab9ca3fff6eb7aa05
|
@ -1,9 +1,9 @@
|
|||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
|
import {useWindowSize} from "@vueuse/core";
|
||||||
defineProps<{
|
defineProps<{
|
||||||
msg: string;
|
msg: string;
|
||||||
}>();
|
}>();
|
||||||
|
|
||||||
import {useWindowSize} from "@vueuse/core";
|
|
||||||
const { width, height } = useWindowSize()
|
const { width, height } = useWindowSize()
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
@ -5,7 +5,9 @@
|
|||||||
"baseUrl": ".",
|
"baseUrl": ".",
|
||||||
"paths": {
|
"paths": {
|
||||||
"@/*": ["./src/*"]
|
"@/*": ["./src/*"]
|
||||||
}
|
},
|
||||||
|
"strict": false,
|
||||||
|
"noImplicitAny": false
|
||||||
},
|
},
|
||||||
|
|
||||||
"references": [
|
"references": [
|
||||||
|
Loading…
Reference in New Issue
Block a user