40 lines
916 B
Vue
40 lines
916 B
Vue
<template>
|
|
<KeepAlive max="5">
|
|
<component :is="currentPageComponent" :key="key" v-bind="Object.fromEntries(currentPageProps)"/>
|
|
</KeepAlive>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { inject, nextTick, onMounted, onUnmounted, watch } from 'vue';
|
|
import { Router } from '@/nirax';
|
|
|
|
const props = defineProps<{
|
|
router?: Router;
|
|
}>();
|
|
|
|
const emit = defineEmits<{
|
|
}>();
|
|
|
|
const router = props.router ?? inject('router');
|
|
|
|
if (router == null) {
|
|
throw new Error('no router provided');
|
|
}
|
|
|
|
let currentPageComponent = $ref(router.getCurrentComponent());
|
|
let currentPageProps = $ref(router.getCurrentProps());
|
|
let key = $ref(router.getCurrentKey());
|
|
|
|
function onChange({ route, props: newProps, key: newKey }) {
|
|
currentPageComponent = route.component;
|
|
currentPageProps = newProps;
|
|
key = newKey;
|
|
}
|
|
|
|
router.addListener('change', onChange);
|
|
|
|
onUnmounted(() => {
|
|
router.removeListener('change', onChange);
|
|
});
|
|
</script>
|