1
0
Fork 1
mirror of https://github.com/elk-zone/elk.git synced 2024-07-05 14:06:48 +01:00
elk/pages/[...permalink].vue

26 lines
505 B
Vue

<script setup lang="ts">
import { hasProtocol, parseURL } from 'ufo'
definePageMeta({
middleware: async (to) => {
const permalink = Array.isArray(to.params.permalink)
? to.params.permalink.join('/')
: to.params.permalink
if (hasProtocol(permalink)) {
const { host, pathname } = parseURL(permalink)
if (host)
return `/${host}${pathname}`
}
// We've reached a page that doesn't exist
return false
},
})
</script>
<template>
<div />
</template>