mirror of
https://github.com/jxxghp/MoviePilot-Frontend.git
synced 2026-06-03 14:50:21 +08:00
fix
This commit is contained in:
@@ -1,15 +1,9 @@
|
||||
<script lang="ts" setup>
|
||||
const route = useRoute();
|
||||
|
||||
const onRefresh = () => {
|
||||
location.reload();
|
||||
};
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<VApp>
|
||||
<PullRefresh @refresh="onRefresh">
|
||||
<RouterView :key="route.fullPath" />
|
||||
</PullRefresh>
|
||||
<RouterView :key="route.fullPath" />
|
||||
</VApp>
|
||||
</template>
|
||||
|
||||
@@ -8,7 +8,6 @@ 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()
|
||||
@@ -21,5 +20,4 @@ app
|
||||
.use(vuetify)
|
||||
.use(router)
|
||||
.use(store)
|
||||
.use(PullRefresh)
|
||||
.mount('#app')
|
||||
|
||||
@@ -8,7 +8,6 @@ const props = defineProps({
|
||||
type: String,
|
||||
});
|
||||
|
||||
|
||||
// 数据列表
|
||||
const dataList = ref<Subscribe[]>([]);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user