2
0
mirror of https://github.com/frappe/books.git synced 2024-12-28 04:55:40 +00:00
books/ui/pages/Report/ReportLinks.vue

17 lines
367 B
Vue
Raw Normal View History

2019-07-17 10:02:49 +00:00
<template>
2019-08-01 13:02:19 +00:00
<div class="page-header pr-4 ml-0 pl-0 py-2 d-flex align-items-center border-bottom bg-white">
<div class="text-right ml-2" v-for="link of links" :key="link.label">
<f-button secondary @click="link.handler">{{ link.label }}</f-button>
2019-07-17 10:02:49 +00:00
</div>
</div>
</template>
<script>
export default {
props: ['links']
};
</script>
<style>
</style>