14 lines
218 B
Vue
14 lines
218 B
Vue
|
<template>
|
||
|
<main>
|
||
|
<h1>Edit</h1>
|
||
|
<p>Todo: implement editing</p>
|
||
|
</main>
|
||
|
</template>
|
||
|
|
||
|
<script lang="ts" setup>
|
||
|
definePageMeta({
|
||
|
middleware: ["authenticated"],
|
||
|
allowedAccountTypes: ["crew", "admin"],
|
||
|
})
|
||
|
</script>
|