index.vue
414 Bytes
<template>
<router-view v-slot="{ Component, route }">
<keep-alive :exclude="['notification-create', 'notification-show', 'notification-edit']">
<component :is="Component" :key="route.path" />
</keep-alive>
</router-view>
</template>
<script lang="ts" setup></script>
<style lang="less" scoped>
.container {
padding: 0 30px 20px 20px;
}
.operations {
display: flex;
}
</style>