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