14 lines
226 B
Vue
14 lines
226 B
Vue
|
<template>
|
||
|
<div>
|
||
|
<h2 class="message">
|
||
|
<i class="material-icons">gps_off</i>
|
||
|
<span>This location can't be reached.</span>
|
||
|
</h2>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {name: 'not-found'}
|
||
|
</script>
|
||
|
|