diff --git a/src/components/AlertBox.vue b/src/components/AlertBox.vue new file mode 100644 index 0000000..c4d9490 --- /dev/null +++ b/src/components/AlertBox.vue @@ -0,0 +1,15 @@ + + + + + \ No newline at end of file diff --git a/src/views/TestView.vue b/src/views/TestView.vue index e1b1eab..7f4e867 100644 --- a/src/views/TestView.vue +++ b/src/views/TestView.vue @@ -2,6 +2,9 @@ import { ref } from 'vue' import ButtonCounter from '@/components/ButtonCounter.vue' import BlogPost from '@/components/BlogPost.vue' +import AlertBox from '@/components/AlertBox.vue' +import HomeView from './HomeView.vue' +import GameView from './GameView.vue' const posts = ref([ { id: 1, title: 'test01' }, @@ -10,6 +13,14 @@ const posts = ref([ ]) const postFontSize = ref(1) + +const currentTab = ref('HomeView') + +const tabs = { + HomeView, + GameView +} +