mirror of
https://github.com/frappe/books.git
synced 2024-12-28 21:02:44 +00:00
17 lines
290 B
Vue
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>
|