mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-07-18 20:59:37 +02:00
15 lines
233 B
Vue
15 lines
233 B
Vue
<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>
|