Files
STARTLINER/src/components/OptionRow.vue
2025-03-03 19:20:28 +00:00

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>