28 lines
502 B
Vue
28 lines
502 B
Vue
<template>
|
|
<div class="space-y-5">
|
|
<AccountProfile />
|
|
<AccountEmails />
|
|
<AccountReferral />
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import AccountProfile from './AccountProfile.vue';
|
|
import AccountReferral from './AccountReferral.vue';
|
|
import AccountEmails from './AccountEmails.vue';
|
|
|
|
export default {
|
|
name: 'AccountSettings',
|
|
pageMeta() {
|
|
return {
|
|
title: 'Settings - Profile'
|
|
};
|
|
},
|
|
components: {
|
|
AccountProfile,
|
|
AccountReferral,
|
|
AccountEmails
|
|
}
|
|
};
|
|
</script>
|