12 lines
260 B
Vue
12 lines
260 B
Vue
<template>
|
|
<div class="flex justify-between item-center inter-300 italic text-3xl lg:text-5xl text-gray-300">
|
|
<h1>
|
|
<slot></slot>
|
|
</h1>
|
|
<h1>{{route.path}}</h1>
|
|
</div>
|
|
</template>
|
|
<script setup lang="ts">
|
|
const route = useRoute()
|
|
</script>
|