2019-04-19 17:35:02 +00:00
|
|
|
<template lang="html">
|
2020-08-14 23:59:12 +00:00
|
|
|
<div
|
|
|
|
class="d-flex align-items-center justify-content-center"
|
|
|
|
:style="`height: calc(100vh - 58px)`"
|
|
|
|
>
|
|
|
|
<b-card
|
|
|
|
class="sw-100 w-30"
|
2020-08-26 07:18:44 +00:00
|
|
|
body-class="text-center"
|
2020-08-14 23:59:12 +00:00
|
|
|
sub-title="404"
|
|
|
|
:title="$t('global.pageNotFound')"
|
2019-11-14 21:10:10 +00:00
|
|
|
>
|
2020-08-14 23:59:12 +00:00
|
|
|
</b-card>
|
2019-11-08 20:34:06 +00:00
|
|
|
</div>
|
2019-04-19 17:35:02 +00:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
export default {
|
2019-11-08 19:56:03 +00:00
|
|
|
computed: {
|
|
|
|
homeUrl() {
|
|
|
|
return process.env.NODE_ENV === 'development'
|
|
|
|
? 'http://localhost:4000'
|
|
|
|
: 'https://app.gamebrary.com';
|
2019-04-19 17:35:02 +00:00
|
|
|
},
|
2019-11-08 19:56:03 +00:00
|
|
|
},
|
2019-04-19 17:35:02 +00:00
|
|
|
};
|
|
|
|
</script>
|