mirror of https://github.com/nocodb/nocodb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
432 B
20 lines
432 B
3 months ago
|
<script setup lang="ts">
|
||
|
const { commandPalette } = useCommandPalette()
|
||
|
</script>
|
||
|
|
||
|
<template>
|
||
|
<NcButton
|
||
|
v-e="['c:quick-actions']"
|
||
|
type="secondary"
|
||
|
size="small"
|
||
|
class="nc-topbar-cmd-k-btn"
|
||
|
data-testid="nc-topbar-cmd-k-btn"
|
||
|
@click="commandPalette?.open()"
|
||
|
>
|
||
|
<div class="flex items-center gap-1 text-sm">
|
||
|
<GeneralIcon icon="ncCommand" class="h-3.5" />
|
||
|
K
|
||
|
</div>
|
||
|
</NcButton>
|
||
|
</template>
|