mirror of
https://github.com/frappe/books.git
synced 2025-02-10 16:08:35 +00:00
25 lines
469 B
Vue
25 lines
469 B
Vue
<template>
|
|
<div
|
|
class="window-drag flex items-center border-b text-gray-900 border-gray-100"
|
|
style="height: 28px"
|
|
>
|
|
<Fb class="ms-2" />
|
|
<p class="mx-auto text-sm" v-if="companyName && dbPath">
|
|
{{ companyName }} - {{ dbPath }}
|
|
</p>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import Fb from './Icons/18/fb.vue';
|
|
|
|
export default {
|
|
name: 'WindowsTitleBar',
|
|
components: { Fb },
|
|
props: {
|
|
dbPath: String,
|
|
companyName: String,
|
|
},
|
|
};
|
|
</script>
|