Action Bar
A container component that displays elements in a row.
Usage
vue
<script setup lang="ts">
import { ActionBar, SecondaryButton } from '@youcan/ui-vue3';
</script>
<template>
<ActionBar>
<SecondaryButton form="export-orders">
Close
</SecondaryButton>
<PrimaryButton form="export-orders">
<template #icon>
💾
</template>
Save
</Primarybutton>
</ActionBar>
</template>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17