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

17 lines
357 B
Vue
Raw Normal View History

2019-07-17 10:02:49 +00:00
<template>
<div class="page-header px-4 py-3 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>