12 lines
134 B
Vue
12 lines
134 B
Vue
<template>
|
|
<h1 class="text-xl font-bold">
|
|
<slot />
|
|
</h1>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
|
|
</script>
|
|
|
|
<style scoped></style>
|