2
0
mirror of https://github.com/frappe/books.git synced 2025-02-13 17:39:09 +00:00
books/src/components/WindowsTitleBar.vue

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
469 B
Vue
Raw Normal View History

<template>
2022-05-28 09:07:14 +05:30
<div
class="window-drag flex items-center border-b text-gray-900 border-gray-100"
style="height: 28px"
>
<Fb class="ml-2" />
<p class="mx-auto text-sm" v-if="companyName && dbPath">
{{ companyName }} - {{ dbPath }}
</p>
</div>
</template>
<script>
2022-05-28 09:07:14 +05:30
import Fb from './Icons/18/fb.vue';
export default {
name: 'WindowsTitleBar',
2022-05-28 09:07:14 +05:30
components: { Fb },
props: {
dbPath: String,
companyName: String,
},
};
</script>