misc: 경매장 진입로를 금/쌀, 유니크로 2원화

This commit is contained in:
2022-06-09 16:16:58 +09:00
parent 58da20f276
commit 120706ef3f
6 changed files with 61 additions and 10 deletions
+9 -2
View File
@@ -22,9 +22,16 @@ 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 } from "vue";
import { toRef } from "vue";
const isResAuction = ref(true);
const props = defineProps({
isResAuction: {
type: Boolean,
default: true,
},
});
const isResAuction = toRef(props, 'isResAuction');
function tryReload() {
console.log('갱신');
+10 -1
View File
@@ -6,9 +6,18 @@ import { auto500px } from "./util/auto500px";
import { insertCustomCSS } from "./util/customCSS";
import { htmlReady } from "./util/htmlReady";
declare const staticValues: {
serverID: string,
turnterm: number,
serverNick: string,
isResAuction: boolean,
};
auto500px();
htmlReady(() => {
insertCustomCSS();
});
createApp(PageAuction).use(BootstrapVue3).use(BToastPlugin).mount('#app')
createApp(PageAuction, {
isResAuction: staticValues.isResAuction,
}).use(BootstrapVue3).use(BToastPlugin).mount('#app')