22 lines
340 B
Vue
22 lines
340 B
Vue
|
<template>
|
||
|
<div class="page">
|
||
|
<h1 class="title">Game Profile: Honkai Impact 3rd</h1>
|
||
|
<p><a href="https://honkaiimpact3.mihoyo.com">Game Website</a></p>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
|
||
|
export default {
|
||
|
components: {
|
||
|
|
||
|
},
|
||
|
meta: {
|
||
|
title: "Game Profile: Honkai Impact 3rd",
|
||
|
},
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style>
|
||
|
</style>
|