This commit is contained in:
jiangrui
2025-03-13 16:37:07 +08:00
parent 676bf5cd40
commit e02422b774
2 changed files with 3 additions and 4 deletions

View File

@@ -92,14 +92,11 @@
<script setup lang="ts">
import { useResourceStore } from "@/stores/resource";
import type { Resource, TagColor } from "@/types";
import { computed } from "vue";
import { getProxyImageUrl } from "@/utils/image";
const store = useResourceStore();
const emit = defineEmits(["save", "loadMore", "searchMovieforTag", "jump"]);
const location = computed(() => window.location);
const handleSave = (resource: Resource) => {
emit("save", resource);
};