22 lines
306 B
Vue
22 lines
306 B
Vue
<template>
|
|
<div class="page">
|
|
<h1 class="title">Game Profile: Nogikoi</h1>
|
|
<p><a href="https://nogikoi.jp">Game Website</a></p>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
|
|
export default {
|
|
components: {
|
|
|
|
},
|
|
head: {
|
|
title: "Game Profile: Nogikoi",
|
|
},
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
</style>
|