aboutsummaryrefslogtreecommitdiff
path: root/src/ui/c-modal/c-modal.demo.vue
blob: c4349f64dfeecb6c46bcf0ae57301c403ba7ce77 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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>