파일 이식(0.31.1)
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
import "@scss/auction.scss";
|
||||
import { createApp } from 'vue'
|
||||
import PageAuction from '@/PageAuction.vue';
|
||||
import BootstrapVue3, { BToastPlugin } from 'bootstrap-vue-3'
|
||||
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, {
|
||||
isResAuction: staticValues.isResAuction,
|
||||
}).use(BootstrapVue3).use(BToastPlugin).mount('#app')
|
||||
Reference in New Issue
Block a user