mirror of https://github.com/rancher/dashboard.git
24 lines
410 B
Vue
24 lines
410 B
Vue
<script>
|
|
import Banner from '@/components/Banner';
|
|
|
|
export default {
|
|
layout: 'plain',
|
|
|
|
components: { Banner },
|
|
|
|
fetch({ store, redirect }) {
|
|
const id = store.getters['defaultClusterId'];
|
|
|
|
if ( id ) {
|
|
redirect({ name: 'c-cluster', params: { cluster: id } });
|
|
}
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<template>
|
|
<div>
|
|
<Banner label="You don't have any clusters..." color="error" />
|
|
</div>
|
|
</template>
|