Registration and activation

This commit is contained in:
Torsten Schulz
2024-07-20 20:43:18 +02:00
parent 3880a265eb
commit bbf4a2deb3
51 changed files with 3016 additions and 69 deletions

View File

@@ -2,12 +2,22 @@
<div>
<h1>Welcome to Home (Logged In)</h1>
<p>Here are your exclusive features.</p>
<button @click="handleLogout">Logout</button>
</div>
</template>
<script>
import { mapActions } from 'vuex';
export default {
name: 'HomeLoggedInView',
methods: {
...mapActions(['logout']),
handleLogout() {
this.logout();
}
}
};
</script>