view client/src/components/PageNotFound.vue @ 2916:ea54e63deb40

client:logs:add catch method
author Fadi Abbud <fadi.abbud@intevation.de>
date Wed, 03 Apr 2019 15:32:59 +0200
parents 563bcd8b7d7b
children 6c5364ff0abb
line wrap: on
line source

<template>
  <div class="main d-flex flex-row" style="position: relative;">
    <Spacer></Spacer>
    <div class="my-auto mx-auto">
      <h1>
        <font-awesome-icon icon="frown-open" fixed-width></font-awesome-icon>We
        are sorry. The ressource you requested could not be found.
      </h1>
    </div>
  </div>
</template>

<script>
export default {
  name: "pagenotfound",
  components: {
    Spacer: () => import("@/components/Spacer")
  }
};
</script>

<style></style>