forked from akanyan/STARTLINER
feat: display witchcraft
This commit is contained in:
12
src/components/OptionRow.vue
Normal file
12
src/components/OptionRow.vue
Normal file
@ -0,0 +1,12 @@
|
||||
<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>
|
Reference in New Issue
Block a user