feat,wip : 거래장 페이지 작업 준비

- 필요에 따라 테이블 준비
This commit is contained in:
2022-06-09 01:21:21 +09:00
parent 6e87aef09f
commit bb04632a7f
7 changed files with 87 additions and 6 deletions
+11
View File
@@ -0,0 +1,11 @@
<template>
<div>테스트</div>
</template>
<script lang="ts">
/*declare const staticValues: {
serverID: string,
serverNick: string,
turnterm: number,
};*/
</script>
<script lang="ts" setup></script>
+14
View File
@@ -0,0 +1,14 @@
import "@scss/auction.scss";
import { createApp } from 'vue'
import PageAuction from '@/PageAuction.vue';
import BootstrapVue3 from 'bootstrap-vue-3'
import { auto500px } from "./util/auto500px";
import { insertCustomCSS } from "./util/customCSS";
import { htmlReady } from "./util/htmlReady";
auto500px();
htmlReady(() => {
insertCustomCSS();
});
createApp(PageAuction).use(BootstrapVue3).mount('#app')