filebrowser/frontend/src/views/errors/404.vue
2020-06-08 23:09:06 +08:00

14 lines
223 B
Vue

<template>
<div>
<h2 class="message">
<i class="material-icons">gps_off</i>
<span>{{ $t('errors.notFound') }}</span>
</h2>
</div>
</template>
<script>
export default { name: 'NotFound' }
</script>