<ListRows>
<ListRow v-for="row in rows" :key="row.id" :row="row">
<template #default="{ column, item }">
<ListRowItem :item="item" :align="column.align">
<template #prefix></template>
</ListRowItem>
</template>
</ListRow>
</ListRows>
<ListSelectBanner>
<template #actions="{ unselectAll }">
<div class="flex gap-2">
<Button variant="ghost" label="Delete" />
<Button variant="ghost" label="Unselect all" @click="unselectAll" />
</div>
</template>
</ListSelectBanner>
</ListView>
import { ListView } from ‘frappe-ui’;