Outlined
- Choose a recipe
- Make a list of the ingredients
- Take the ingredients
- Prepare the dish following the recipe's instructions
- Enjoy the dish!
- Choose a recipe
- Make a list of the ingredients
- Take the ingredients
- Prepare the dish following the recipe's instructions
- Enjoy the dish!
Code
vue
<script setup>
import { useTimelineDemo } from './timeline-demo';
const { isDark, timelineItems } = useTimelineDemo()
</script>
<template>
<Timeline
:items="timelineItems"
fill="outlined"
:mode="isDark ? 'dark' : 'light'"
/>
<Timeline
:items="timelineItems"
colored="lightcoral"
fill="outlined"
:mode="isDark ? 'dark' : 'light'"
/>
</template>
TIP
It's possible to combine fill
and colored
property.