mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-07-19 21:29:37 +02:00
refactor(search): command palette design (#463)
This commit is contained in:
parent
732da08157
commit
bcb98b359c
18 changed files with 576 additions and 386 deletions
15
src/ui/c-modal/c-modal.demo.vue
Normal file
15
src/ui/c-modal/c-modal.demo.vue
Normal file
|
@ -0,0 +1,15 @@
|
|||
<script lang="ts" setup>
|
||||
const modal1 = ref();
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div>
|
||||
<c-button @click="() => modal1?.open()">
|
||||
Open Modal
|
||||
</c-button>
|
||||
|
||||
<c-modal ref="modal1">
|
||||
Content
|
||||
</c-modal>
|
||||
</div>
|
||||
</template>
|
Loading…
Add table
Add a link
Reference in a new issue