Files
maaw/pages/dashboard.vue
2023-02-21 20:37:32 +11:00

26 lines
848 B
Vue

<script setup lang="ts">
import { storeToRefs } from 'pinia';
definePageMeta({
middleware: ['auth'],
});
const store = useAppStore();
const { notes } = storeToRefs(store); // ensure the notes list is reactive
onMounted(async () => {
await store.initUser();
})
</script>
<template>
<div>
<h3>Notes Dashboard</h3>
<p v-for="note in notes">{{ note.note_text }}</p>
<button @click.prevent="store.changeAccountPlan(2)">Change Account Plan to 2</button>
<button @click.prevent="store.joinUserToAccount(5)">Join user to account 5</button>
<button @click.prevent="store.changeUserAccessWithinAccount(4, 5, 'ADMIN')">Change user 4 access within account 5 to ADMIN</button>
<button @click.prevent="store.claimOwnershipOfAccount(5)">Claim Account 5 Ownership for current user</button>
</div>
</template>