WebIndex/pages/blog/[cid].vue

14 lines
171 B
Vue
Raw Normal View History

2024-11-17 13:05:55 +08:00
<script setup lang="ts">
2024-12-01 13:09:44 +08:00
const route = useRoute()
const cid = route.params.cid as string
onMounted( () => {
2024-11-17 13:05:55 +08:00
})
</script>
<template>
</template>
<style scoped>
</style>