mirror of
https://github.com/nagisa77/OpenIsle.git
synced 2026-02-24 15:10:48 +08:00
18 lines
204 B
Vue
18 lines
204 B
Vue
<template>
|
|
<div class="signup-page">
|
|
<h1>Sign Up</h1>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'SignupPageView'
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
.signup-page {
|
|
padding: 20px;
|
|
}
|
|
</style>
|