mirror of
https://github.com/kaythomas0/noisedash.git
synced 2025-11-14 04:14:02 +00:00
16 lines
183 B
Vue
16 lines
183 B
Vue
<template>
|
|
<AdminPage />
|
|
</template>
|
|
|
|
<script>
|
|
import AdminPage from '../components/AdminPage'
|
|
|
|
export default {
|
|
name: 'AdminView',
|
|
|
|
components: {
|
|
AdminPage
|
|
}
|
|
}
|
|
</script>
|