mirror of
https://github.com/0PandaDEV/Qopy.git
synced 2025-04-21 21:24:05 +02:00
feat: enhance BottomBar and TopBar components with dynamic actions and improved styling; integrate actions in index.vue
This commit is contained in:
parent
60d17442fc
commit
455b60a994
3 changed files with 45 additions and 21 deletions
|
@ -66,7 +66,17 @@
|
|||
</OverlayScrollbarsComponent>
|
||||
</div>
|
||||
</div>
|
||||
<BottomBar />
|
||||
<BottomBar
|
||||
:primary-action="{
|
||||
text: 'Paste',
|
||||
icon: IconsEnter,
|
||||
onClick: pasteSelectedItem,
|
||||
}"
|
||||
:secondary-action="{
|
||||
text: 'Actions',
|
||||
icon: IconsK,
|
||||
showModifier: true,
|
||||
}" />
|
||||
</main>
|
||||
</template>
|
||||
|
||||
|
@ -95,6 +105,8 @@ import {
|
|||
selectedElement,
|
||||
useSelectedResult,
|
||||
} from "~/lib/selectedResult";
|
||||
import IconsEnter from "~/components/Icons/Enter.vue";
|
||||
import IconsK from "~/components/Icons/K.vue";
|
||||
|
||||
interface GroupedHistory {
|
||||
label: string;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue