MyAccount page prototype
This commit is contained in:
26
src/views/AccountManagement/MyAccount.vue
Normal file
26
src/views/AccountManagement/MyAccount.vue
Normal file
@@ -0,0 +1,26 @@
|
||||
<template>
|
||||
<div class="div flex justify-center w-[600px]">
|
||||
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import { onMounted, } from 'vue';
|
||||
import LoadingStore from '@/stores/loading.js';
|
||||
export default {
|
||||
props: {
|
||||
|
||||
},
|
||||
setup(props) {
|
||||
const loadingStore = LoadingStore();
|
||||
|
||||
onMounted(() => {
|
||||
loadingStore.setIsLoading(false);
|
||||
});
|
||||
|
||||
return {
|
||||
|
||||
};
|
||||
}
|
||||
}
|
||||
</script>
|
||||
Reference in New Issue
Block a user