2
0
mirror of https://github.com/frappe/books.git synced 2025-01-01 14:31:46 +00:00
books/ui/pages/Report/ReportLinks.vue
2019-07-18 16:11:15 +05:30

17 lines
290 B
Vue

<template>
<div class="row">
<div class="text-right ml-2" v-for="link of links" :key="link.label">
<f-button secondary @click="link.handler">{{ link.label }}</f-button>
</div>
</div>
</template>
<script>
export default {
props: ['links']
};
</script>
<style>
</style>