bcgov/nr-get-token

View on GitHub
app/frontend/src/views/NotFound.vue

Summary

Maintainability
Test Coverage
<template>
  <v-container class="not-found text-center">
    <h1 class="my-8">404: Page not found. :(</h1>
    <router-link :to="{ name: 'About' }">
      <v-btn color="primary" class="about-btn" large>
        <v-icon left>mdi-home</v-icon>
        <span>Return</span>
      </v-btn>
    </router-link>
  </v-container>
</template>

<script>
export default {
  name: 'NotFound'
};
</script>