feat: launch command palette

This commit is contained in:
Jannat Patel
2025-11-17 10:10:26 +05:30
parent 0a72f0a9a9
commit c7915e2c3d
5 changed files with 52 additions and 15 deletions
@@ -0,0 +1,10 @@
<template>
<Dialog v-model="show">
<template #body> Command Palette </template>
</Dialog>
</template>
<script setup lang="ts">
import { Dialog } from 'frappe-ui'
const show = defineModel<boolean>({ required: true, default: false })
</script>