kandimat-user-app/src/app/404/components/index.vue

25 lines
429 B
Vue
Raw Normal View History

2017-08-12 23:00:43 +02:00
<template>
<section>
2017-08-13 14:03:38 +02:00
<h1>{{ $t('fourzerofour.headline') }}</h1>
<p>{{ $t('fourzerofour.content') }}</p>
<router-link class="btn" :to="{ path: '/' }">
{{ $t('fourzerofour.button') }}
</router-link>
2017-08-12 23:00:43 +02:00
</section>
</template>
<script>
export default {
2017-08-13 14:03:38 +02:00
name: 'FourZeroFour'
2017-08-12 23:00:43 +02:00
}
</script>
2017-08-13 01:23:24 +02:00
<style lang="scss" scoped>
2019-03-20 23:19:13 +01:00
@import "~@/styles/layout";
2017-08-13 01:23:24 +02:00
2017-08-13 18:26:20 +02:00
h1,
p {
2017-08-13 01:23:24 +02:00
margin-bottom: $base-gap;
}
</style>