mirror of https://github.com/rancher/dashboard.git
21 lines
348 B
Vue
21 lines
348 B
Vue
<script>
|
|
import Brand from '@shell/mixins/brand';
|
|
import Inactivity from '@shell/components/Inactivity';
|
|
|
|
export default {
|
|
components: { Inactivity },
|
|
mixins: [Brand],
|
|
};
|
|
</script>
|
|
|
|
<template>
|
|
<main class="main-layout">
|
|
<router-view :key="$route.path" />
|
|
|
|
<Inactivity />
|
|
</main>
|
|
</template>
|
|
|
|
<style lang="scss" scoped>
|
|
</style>
|