8
pages/[topics]/[post].vue
Normal file
8
pages/[topics]/[post].vue
Normal file
@@ -0,0 +1,8 @@
|
||||
<template>
|
||||
<div>
|
||||
<h1 class="text-5xl">
|
||||
post name {{ $route.params.post }} of topic
|
||||
{{ $route.params.topics }} will be here
|
||||
</h1>
|
||||
</div>
|
||||
</template>
|
||||
7
pages/[topics]/index.vue
Normal file
7
pages/[topics]/index.vue
Normal file
@@ -0,0 +1,7 @@
|
||||
<template>
|
||||
<div>
|
||||
<h1 class="text-5xl">
|
||||
All the post related to {{ $route.params.topics }} will be here
|
||||
</h1>
|
||||
</div>
|
||||
</template>
|
||||
Reference in New Issue
Block a user