forked from akanyan/STARTLINER
13 lines
230 B
Vue
13 lines
230 B
Vue
<script setup lang="ts">
|
|
defineProps({
|
|
title: String,
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<div class="flex flex-row w-full p-2 gap-2 items-center">
|
|
<div class="grow">{{ title }}</div>
|
|
<slot />
|
|
</div>
|
|
</template>
|