Files
2018-07-16 19:15:01 +08:00

20 lines
352 B
Vue

<template>
<div class="container">
<card class="text-center">
<h3 class="mb-4">{{ $t('page_not_found') }}</h3>
<div class="links">
<router-link :to="{ name: 'home' }">
{{ $t('go_home') }}
</router-link>
</div>
</card>
</div>
</template>
<script>
export default {
name: 'NotFound'
}
</script>