Skip to content
Snippets Groups Projects
NotFound.vue 224 B
Newer Older
  <div class="page not-found">
    <h1>
      {{ $t('notFound.title') }}
    </h1>
    <p>
      {{ $t('notFound.text') }}
    </p>
  </div>
</template>

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