1
0
Fork 0
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:
Corentin THOMASSET 2023-06-19 00:21:36 +02:00 committed by Corentin Thomasset
parent 732da08157
commit bcb98b359c
No known key found for this signature in database
GPG key ID: DBD997E935996158
18 changed files with 576 additions and 386 deletions

View 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>