This repository has been archived on 2021-03-10. You can view files and clone it, but cannot push or open issues or pull requests.
perktree/frontend/src/components/user.component.vue

28 lines
341 B
Vue

<template>
<v-container>
<h1>Dashboard</h1>
</v-container>
</template>
<script>
// import AuthController from '../controllers/auth.controller';
export default {
name: 'Index',
components: {
},
data () {
return {
};
},
methods: {
},
mounted() {
// AuthController.getUser().then((response) => {
// });
},
};
</script>