aboutsummaryrefslogtreecommitdiff
path: root/src/App.vue
diff options
context:
space:
mode:
authorGravatar Corentin Thomasset <corentin.thomasset74@gmail.com> 2022-04-04 00:24:45 +0200
committerGravatar Corentin Thomasset <corentin.thomasset74@gmail.com> 2022-04-04 00:24:45 +0200
commit25a86597862051b12aa8f46c802fd6b325e4389a (patch)
tree03498bfa246236990209ff313b6b577f3c8be262 /src/App.vue
parent64c92a661ccf1fb6a6482c5504db97dbcb003977 (diff)
downloadit-tools-25a86597862051b12aa8f46c802fd6b325e4389a.tar.gz
it-tools-25a86597862051b12aa8f46c802fd6b325e4389a.tar.zst
it-tools-25a86597862051b12aa8f46c802fd6b325e4389a.zip
chore: components base
Diffstat (limited to 'src/App.vue')
-rw-r--r--src/App.vue8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/App.vue b/src/App.vue
index c7c24ef..abbb362 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -16,9 +16,11 @@ const layout = computed(() => route?.meta?.layout ?? layouts.base)
<template>
<n-config-provider>
<n-global-style />
- <component :is="layout">
- <router-view />
- </component>
+ <n-message-provider placement="bottom">
+ <component :is="layout">
+ <router-view />
+ </component>
+ </n-message-provider>
</n-config-provider>
</template>