mirror of https://github.com/rancher/dashboard.git
16 lines
315 B
Vue
16 lines
315 B
Vue
<script>
|
|
import Brand from '@shell/mixins/brand';
|
|
|
|
export default {
|
|
mixins: [Brand],
|
|
beforeMount() {
|
|
this.$store.commit('setError', { error: new Error('404: This page could not be found') });
|
|
this.$router.replace('/fail-whale');
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<template>
|
|
<div class="dashboard-root" />
|
|
</template>
|