This commit is contained in:
jxxghp
2023-09-18 17:36:12 +08:00
parent 38193a870b
commit e156b662a3
2 changed files with 5 additions and 2 deletions

View File

@@ -1,6 +1,6 @@
{
"name": "moviepilot",
"version": "1.2.2-1",
"version": "1.2.2-2",
"private": true,
"scripts": {
"dev": "vite --host",

View File

@@ -41,7 +41,10 @@ function handleNavScroll(evt: Event) {
}
onMounted(() => {
menuShow.value = true
// 1秒钟后再显示
setTimeout(() => {
menuShow.value = true
}, 1000)
})
</script>