33 lines
659 B
Vue
33 lines
659 B
Vue
<template>
|
|
<q-btn-dropdown
|
|
class="customized-disabled-btn"
|
|
push
|
|
flat
|
|
no-caps
|
|
icon="share"
|
|
size="md"
|
|
:label="userStore.currentDomain.domainName"
|
|
:disable-dropdown="true"
|
|
dropdown-icon="none"
|
|
:disable="true"
|
|
>
|
|
</q-btn-dropdown>
|
|
</template>
|
|
<script setup lang="ts">
|
|
import { useAuthStore } from 'stores/useAuthStore';
|
|
|
|
const userStore = useAuthStore();
|
|
</script>
|
|
<style lang="scss">
|
|
.q-btn.disabled.customized-disabled-btn {
|
|
opacity: 1 !important;
|
|
cursor: default !important;
|
|
.q-icon.q-btn-dropdown__arrow {
|
|
display: none;
|
|
}
|
|
* {
|
|
cursor: default !important;
|
|
}
|
|
}
|
|
</style>
|