ToastModal 위치 변경

This commit is contained in:
yoon 2025-01-21 15:44:05 +09:00
parent 05c26f7b7b
commit fe73ea2c56

View File

@ -2,16 +2,16 @@
<component :is="layout"> <component :is="layout">
<template #content> <template #content>
<router-view></router-view> <router-view></router-view>
<ToastModal />
</template> </template>
</component> </component>
<ToastModal />
</template> </template>
<script setup> <script setup>
import { computed } from 'vue'; import { computed } from 'vue';
import { useRoute } from 'vue-router'; import { useRoute } from 'vue-router';
import NormalLayout from './layouts/NormalLayout.vue'; import NormalLayout from './layouts/NormalLayout.vue';
import NoLayout from './layouts/NoLayout.vue'; import NoLayout from './layouts/NoLayout.vue';
import ToastModal from '@c/modal/ToastModal.vue'; import ToastModal from '@c/modal/ToastModal.vue';
const route = useRoute(); const route = useRoute();