feat: launch command palette
This commit is contained in:
@@ -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>
|
||||
Reference in New Issue
Block a user