aboutsummaryrefslogtreecommitdiff
path: root/src/ui/c-tooltip/c-tooltip.demo.vue
blob: d3852573b328c40b5ed6377f001e6d24de5649b6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<template>
  <div>
    <c-tooltip>
      Hover me

      <template #tooltip>
        Tooltip content
      </template>
    </c-tooltip>
  </div>

  <div mt-5>
    <c-tooltip tooltip="Tooltip content">
      Hover me
    </c-tooltip>
  </div>
</template>