feat(frontend): initialisatie router en bijhorende.vue componenten
This commit is contained in:
parent
c07bb959cf
commit
6beaf77adf
38 changed files with 436 additions and 449 deletions
18
frontend/src/views/auth/RegisterPage.vue
Normal file
18
frontend/src/views/auth/RegisterPage.vue
Normal file
|
@ -0,0 +1,18 @@
|
|||
<script setup lang="ts">
|
||||
import {useRoute} from 'vue-router';
|
||||
|
||||
const route = useRoute();
|
||||
const role = route.params.role;
|
||||
|
||||
if (role === "student") { /* Empty */
|
||||
} else { /* Empty */
|
||||
}
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<main></main>
|
||||
</template>
|
||||
|
||||
<style scoped>
|
||||
|
||||
</style>
|
Loading…
Add table
Add a link
Reference in a new issue