refac: 유니크 경매 UI 수정

This commit is contained in:
2022-06-10 02:07:05 +09:00
parent a039fb871b
commit 6fb2358161
5 changed files with 152 additions and 52 deletions
+2 -2
View File
@@ -22,7 +22,7 @@ import TopBackBar from "@/components/TopBackBar.vue";
import BottomBar from "./components/BottomBar.vue";
import AuctionResource from "@/components/AuctionResource.vue";
import AuctionUniqueItem from "@/components/AuctionUniqueItem.vue";
import { ref, toRef } from "vue";
import { ref } from "vue";
const props = defineProps({
isResAuction: {
@@ -34,7 +34,7 @@ const props = defineProps({
const auctionResource = ref<InstanceType<typeof AuctionResource> | null>(null);
const auctionUniqueItem = ref<InstanceType<typeof AuctionUniqueItem> | null>(null);
const isResAuction = toRef(props, "isResAuction");
const isResAuction = ref(props.isResAuction);
async function tryReload() {
console.log(auctionResource.value);