2
0
mirror of https://github.com/frappe/books.git synced 2025-01-28 09:38:36 +00:00
books/ui/pages/Report/ReportLinks.vue

17 lines
367 B
Vue
Raw Normal View History

2019-07-17 15:32:49 +05:30
<template>
2019-08-01 18:32:19 +05:30
<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 15:32:49 +05:30
</div>
</div>
</template>
<script>
export default {
props: ['links']
};
</script>
<style>
</style>