mirror of
https://github.com/frappe/books.git
synced 2024-11-10 15:50:56 +00:00
17 lines
367 B
Vue
17 lines
367 B
Vue
<template>
|
|
<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>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
props: ['links']
|
|
};
|
|
</script>
|
|
|
|
<style>
|
|
</style>
|