pull to refresh

This commit is contained in:
jxxghp
2023-07-01 08:58:47 +08:00
parent 7d3726f25b
commit 10013eab9d
6 changed files with 18 additions and 4 deletions

View File

@@ -1 +1 @@
VITE_API_BASE_URL=http://localhost:3001/api/v1/
VITE_API_BASE_URL=http://10.10.10.10:3001/api/v1/

View File

@@ -5,7 +5,7 @@
<meta charset="UTF-8" />
<link rel="icon" href="/favicon.ico" />
<meta name="viewport"
content="width=device-width, initial-scale=1, maximum-scale=1, viewport-fit=cover, user-scalable=0" />
content="initial-scale=1, viewport-fit=cover, width=device-width" />
<title>MoviePilot</title>
<meta name="Robots" content="noindex,nofollow,noarchive">
<link rel="icon" type="image/png" href="/logo.png">
@@ -121,4 +121,4 @@
</script>
</body>
</html>
</html>

View File

@@ -24,6 +24,7 @@
"jwt-decode": "^3.1.2",
"postcss-purgecss": "^5.0.0",
"prismjs": "^1.29.0",
"pull-refresh-vue3": "^0.3.1",
"roboto-fontface": "^0.10.0",
"sass": "^1.59.3",
"tailwindcss": "^3.3.2",

View File

@@ -1,9 +1,15 @@
<script lang="ts" setup>
const route = useRoute();
const onRefresh = () => {
location.reload();
};
</script>
<template>
<VApp>
<RouterView :key="route.fullPath" />
<PullRefresh @refresh="onRefresh">
<RouterView :key="route.fullPath" />
</PullRefresh>
</VApp>
</template>

View File

@@ -8,6 +8,7 @@ import store from '@/store'
import '@core/scss/template/index.scss'
import '@layouts/styles/index.scss'
import '@styles/styles.scss'
import PullRefresh from 'pull-refresh-vue3'
import { createApp } from 'vue'
loadFonts()
@@ -20,4 +21,5 @@ app
.use(vuetify)
.use(router)
.use(store)
.use(PullRefresh)
.mount('#app')

View File

@@ -5919,6 +5919,11 @@ proxy-from-env@^1.1.0:
resolved "https://registry.yarnpkg.com/proxy-from-env/-/proxy-from-env-1.1.0.tgz#e102f16ca355424865755d2c9e8ea4f24d58c3e2"
integrity sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==
pull-refresh-vue3@^0.3.1:
version "0.3.1"
resolved "https://registry.yarnpkg.com/pull-refresh-vue3/-/pull-refresh-vue3-0.3.1.tgz#e75ffad5d71e30a85b5338f2beca9fc8a1e01432"
integrity sha512-DTcosG4LT3dGF/amzMP3YOwQ11x1taxQU3ChGx2SDCT5LMmyNpUD7pb2FAZkB/QEHVSpUTIfCcanfXANkYOXjw==
pump@^3.0.0:
version "3.0.0"
resolved "https://registry.yarnpkg.com/pump/-/pump-3.0.0.tgz#b4a2116815bde2f4e1ea602354e8c75565107a64"