2
0
mirror of https://github.com/frappe/books.git synced 2025-01-16 04:02:25 +00:00
books/ui/pages/Report/ReportLinks.vue
2019-07-17 19:26:44 +05:30

17 lines
290 B
Vue

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