<Route path='/login'>
Login Page
</Route>
<Route path='/user/:id'>
<template #default="props">
User Page
{{ props }}
</template>
</Route>
Last active
November 22, 2023 13:57
-
-
Save jellehak/690d5bc8c0f4969c63a29ef2678a48ba to your computer and use it in GitHub Desktop.
Router for Vue 3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<slot v-if="isPathMatched" v-bind="{params: extractVariables(props.path, locationHash)}"/> | |
</template> | |
<script setup> | |
import { ref, computed, onMounted } from 'vue'; | |
const props = defineProps({ | |
path: { | |
type: String, | |
required: true | |
} | |
}) | |
const locationHash = ref(window.location.hash.replace('#', '')); | |
onMounted(() => { | |
window.addEventListener('hashchange', () => { | |
locationHash.value = window.location.hash.replace('#', ''); | |
}); | |
}); | |
const isPathMatched = computed(() => { | |
const regex = new RegExp(props.path.replace(/:[^\s/]+/g, '[^/]+')); | |
return regex.test(locationHash.value); | |
}); | |
/** | |
* @example extractVariables('/user/:id', '/user/5'); // would yield {id:5} | |
* @param {*} path | |
* @param {*} matchedPath | |
*/ | |
const extractVariables = (path, matchedPath) => { | |
const pathSegments = path.split('/'); | |
const matchedSegments = matchedPath.split('/'); | |
const variables = {}; | |
for (let i = 0; i < pathSegments.length; i++) { | |
const segment = pathSegments[i]; | |
if (segment.startsWith(':')) { | |
const variableName = segment.slice(1); | |
const variableValue = matchedSegments[i]; | |
variables[variableName] = variableValue; | |
} | |
} | |
return variables; | |
}; | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment