blob: 597653bfa490fa9032d1fc85c68ae175357c2915 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
<style lang="scss" scoped>
@import "~/assets/styles/_colors.scss";
h2 {
font-weight: 100;
color: $textColor;
font-size: 4em;
text-align: center;
}
</style>
<template>
<section class="hero is-fullheight">
<Navbar :isWhite="true" />
<div class="hero-body">
<div class="container">
<h2>404エラ</h2>
</div>
</div>
</section>
</template>
<script>
import Navbar from '~/components/navbar/Navbar.vue';
export default {
components: { Navbar },
mounted() {
this.$ga.page({
page: '/404',
title: 'Not Found',
location: window.location.href
});
}
};
</script>
|