feat: 새 설문조사 모듈 UI

This commit is contained in:
2022-05-16 01:41:10 +09:00
parent 99242ac3d3
commit 9f363e46fc
13 changed files with 650 additions and 19 deletions
+15
View File
@@ -0,0 +1,15 @@
import "@scss/vote.scss";
import { createApp } from 'vue'
import PageVote from '@/PageVote.vue';
import { BootstrapVue3, BToastPlugin } from 'bootstrap-vue-3'
import { auto500px } from "./util/auto500px";
import { htmlReady } from "./util/htmlReady";
import { insertCustomCSS } from "./util/customCSS";
auto500px();
htmlReady(() => {
insertCustomCSS();
});
createApp(PageVote).use(BootstrapVue3).use(BToastPlugin).mount('#app')