2019-12-16 17:04:22 +05:30
|
|
|
<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>
|
2019-12-16 17:04:22 +05:30
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
2022-05-28 09:07:14 +05:30
|
|
|
import Fb from './Icons/18/fb.vue';
|
2019-12-16 17:04:22 +05:30
|
|
|
|
|
|
|
export default {
|
|
|
|
name: 'WindowsTitleBar',
|
2022-05-28 09:07:14 +05:30
|
|
|
components: { Fb },
|
|
|
|
props: {
|
|
|
|
dbPath: String,
|
|
|
|
companyName: String,
|
2021-11-04 15:03:51 +05:30
|
|
|
},
|
2019-12-16 17:04:22 +05:30
|
|
|
};
|
|
|
|
</script>
|