diff options
author | 2022-04-04 00:24:45 +0200 | |
---|---|---|
committer | 2022-04-04 00:24:45 +0200 | |
commit | 25a86597862051b12aa8f46c802fd6b325e4389a (patch) | |
tree | 03498bfa246236990209ff313b6b577f3c8be262 /src/App.vue | |
parent | 64c92a661ccf1fb6a6482c5504db97dbcb003977 (diff) | |
download | it-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.vue | 8 |
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> |