mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/exchange.git
synced 2026-08-21 13:24:27 +00:00
20 lines
352 B
Vue
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>
|