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