dashboard/shell/pages/c/_cluster/ecm/index.vue

15 lines
203 B
Vue

<script>
export default {
mounted() {
const link = this.$store.getters['backToRancherLink'];
window.location.href = link;
}
};
</script>
<template>
<div>Redirecting...</div>
</template>