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
+8 -4
View File
@@ -148,10 +148,14 @@ export type IDItem<T> = {
};
export type ToastType = {
title?: string,
content?: string,
type?: Colors,
delay?: number,
content: {
title?: string,
body?: string,
},
options?: {
variant?: Colors,
delay?: number,
}
}
export const keyScreenMode = 'sam.screenMode';