diff options
author | gumi <git@gumi.ca> | 2021-08-19 12:14:37 -0400 |
---|---|---|
committer | gumi <git@gumi.ca> | 2021-08-19 12:21:16 -0400 |
commit | 802fb4adaf2e4ffd76b08dc23e29e4c8f4bed543 (patch) | |
tree | eed99a377249bdac523c275614925078e6e02167 /src/App.vue | |
parent | c3d48e0be54364cf14df4eb1c3ed49d74ae8ab6d (diff) | |
download | website-802fb4adaf2e4ffd76b08dc23e29e4c8f4bed543.tar.gz website-802fb4adaf2e4ffd76b08dc23e29e4c8f4bed543.tar.bz2 website-802fb4adaf2e4ffd76b08dc23e29e4c8f4bed543.tar.xz website-802fb4adaf2e4ffd76b08dc23e29e4c8f4bed543.zip |
fix some typescript warnings
Diffstat (limited to 'src/App.vue')
-rw-r--r-- | src/App.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/App.vue b/src/App.vue index 01632d9..9e4d7b3 100644 --- a/src/App.vue +++ b/src/App.vue @@ -107,7 +107,7 @@ export default class AppV extends Vue { globalStatus = process.env.VUE_APP_STATUS?.trim() ?? ""; - mounted () { + mounted (): void { self.addEventListener("initial-load", () => { this.loaded = true; }); |