MyAccount page prototype

This commit is contained in:
Cindy Chang
2024-08-27 09:32:06 +08:00
parent 7243100d9c
commit 09237a0759
8 changed files with 199 additions and 3 deletions

View 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>