mirror of
https://github.com/kaythomas0/noisedash.git
synced 2025-11-13 03:46:22 +00:00
16 lines
193 B
Vue
16 lines
193 B
Vue
<template>
|
|
<AccountPage />
|
|
</template>
|
|
|
|
<script>
|
|
import AccountPage from '../components/AccountPage'
|
|
|
|
export default {
|
|
name: 'AccountView',
|
|
|
|
components: {
|
|
AccountPage
|
|
}
|
|
}
|
|
</script>
|