vue: board

This commit is contained in:
2021-09-05 17:52:39 +09:00
parent 9871559227
commit 53df6bbcc6
7 changed files with 197 additions and 69 deletions
+6 -1
View File
@@ -2,5 +2,10 @@ import { createApp } from 'vue'
import Board from './Board.vue';
import { setAxiosXMLHttpRequest } from './util/setAxiosXMLHttpRequest';
declare const isSecretBoard: boolean;
setAxiosXMLHttpRequest();
createApp(Board).mount('#app')
createApp(Board, {
isSecretBoard
}).mount('#app')