10 lines
266 B
Vue
10 lines
266 B
Vue
<template>
|
|
<div class="container mx-auto">
|
|
<div class="p-6 my-4 mx-3 rounded-md bg-gray-200">
|
|
<h1 class="text-black font-semibold leading-tight text-4xl md:text-5xl my-5">
|
|
#{{ $route.params.category }}
|
|
</h1>
|
|
</div>
|
|
</div>
|
|
</template>
|