mirror of
https://github.com/frappe/books.git
synced 2025-01-01 14:31:46 +00:00
17 lines
290 B
Vue
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>
|