mirror of
https://github.com/DavidHDev/vue-bits.git
synced 2026-03-07 06:29:30 -07:00
12 lines
210 B
Vue
12 lines
210 B
Vue
<template>
|
|
<div>
|
|
<h1>Category Page</h1>
|
|
<p>Category: {{ $route.params.category }}</p>
|
|
<p>Subcategory: {{ $route.params.subcategory }}</p>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
|
|
</script>
|