mirror of
https://github.com/kaythomas0/noisedash.git
synced 2025-11-11 19:06:20 +00:00
16 lines
198 B
Vue
16 lines
198 B
Vue
<template>
|
|
<RegisterPage />
|
|
</template>
|
|
|
|
<script>
|
|
import RegisterPage from '../components/RegisterPage'
|
|
|
|
export default {
|
|
name: 'RegisterView',
|
|
|
|
components: {
|
|
RegisterPage
|
|
}
|
|
}
|
|
</script>
|