From 3657d6a888c591c07aec6c9df34809363198d9ec Mon Sep 17 00:00:00 2001 From: legonzaur Date: Fri, 5 Apr 2024 16:39:42 +0200 Subject: [PATCH] show basic game information --- app.vue | 59 +++++++++++++++++++++++++++++++++++++- components/CardPreview.vue | 9 ++++++ components/CardSlot.vue | 9 ++++++ components/GameBoard.vue | 19 ++++++++++++ nuxt.config.ts | 3 +- 5 files changed, 97 insertions(+), 2 deletions(-) create mode 100644 components/CardPreview.vue create mode 100644 components/CardSlot.vue create mode 100644 components/GameBoard.vue diff --git a/app.vue b/app.vue index a495b75..458c945 100644 --- a/app.vue +++ b/app.vue @@ -1,5 +1,62 @@ + + diff --git a/components/CardPreview.vue b/components/CardPreview.vue new file mode 100644 index 0000000..cd2d4d4 --- /dev/null +++ b/components/CardPreview.vue @@ -0,0 +1,9 @@ + + + \ No newline at end of file diff --git a/components/CardSlot.vue b/components/CardSlot.vue new file mode 100644 index 0000000..eacec5d --- /dev/null +++ b/components/CardSlot.vue @@ -0,0 +1,9 @@ + + + \ No newline at end of file diff --git a/components/GameBoard.vue b/components/GameBoard.vue new file mode 100644 index 0000000..ab82bd3 --- /dev/null +++ b/components/GameBoard.vue @@ -0,0 +1,19 @@ + + + \ No newline at end of file diff --git a/nuxt.config.ts b/nuxt.config.ts index 8851e77..73139af 100644 --- a/nuxt.config.ts +++ b/nuxt.config.ts @@ -1,4 +1,5 @@ // https://nuxt.com/docs/api/configuration/nuxt-config export default defineNuxtConfig({ - devtools: { enabled: true } + devtools: { enabled: true }, + ssr: false })