mirror of
https://github.com/frappe/books.git
synced 2024-11-10 15:50:56 +00:00
12 lines
361 B
Vue
12 lines
361 B
Vue
|
<template>
|
||
|
<div class="frappe-form-actions d-flex justify-content-between align-items-center p-3 border-bottom">
|
||
|
<h5 class="m-0">{{ title || name }}</h5>
|
||
|
<f-button primary :disabled="!isDirty" @click="$emit('save')">{{ _('Save') }}</f-button>
|
||
|
</div>
|
||
|
</template>
|
||
|
<script>
|
||
|
export default {
|
||
|
props: ['doctype', 'name', 'title', 'isDirty']
|
||
|
}
|
||
|
</script>
|