mirror of
https://github.com/elk-zone/elk.git
synced 2024-11-02 23:19:57 +00:00
20 lines
327 B
Vue
20 lines
327 B
Vue
<script setup lang="ts">
|
|
definePageMeta({
|
|
middleware: async (to) => {
|
|
const params = to.params
|
|
const id = params.status as string
|
|
const status = await fetchStatus(id)
|
|
return {
|
|
path: getStatusPath(status),
|
|
state: {
|
|
status,
|
|
},
|
|
}
|
|
},
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<div />
|
|
</template>
|