refac: toast 출력을 bootstrap-vue-3 내부 toast로 변경

- component로 src 내부 ts/vue 사용 시도 중
This commit is contained in:
2022-02-18 20:54:26 +09:00
parent 65aefadcdc
commit 5ea1b0bce4
13 changed files with 534 additions and 651 deletions
+2 -2
View File
@@ -2,8 +2,8 @@ import "@scss/common/bootstrap5.scss";
import { createApp } from 'vue'
import NPCControl from '@/PageNPCControl.vue';
import BootstrapVue3 from 'bootstrap-vue-3'
import {BootstrapVue3, ToastPlugin} from 'bootstrap-vue-3'
import { setAxiosXMLHttpRequest } from '@util/setAxiosXMLHttpRequest';
setAxiosXMLHttpRequest();
createApp(NPCControl).use(BootstrapVue3).mount('#app')
createApp(NPCControl).use(BootstrapVue3).use(ToastPlugin).mount('#app')