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