You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ngcp-csc-ui/src/components/Error404.vue

22 lines
530 B

<template>
<q-layout>
<div
id="csc-login"
class="row"
>
<div class="column col-lg-4 col-xl-4 col-md-3 gt-sm" />
<div class="column col-12 col-md-6 col-lg-4 col-xl-4">
{{ $t('404 Not Found') }}
</div>
<div class="column col-lg-4 col-xl-4 col-md-3 gt-sm" />
</div>
</q-layout>
</template>
<script>
export default {
// eslint-disable-next-line vue/multi-word-component-names
name: 'Error404'
}
</script>