Skip to content

Instantly share code, notes, and snippets.

View jannunen's full-sized avatar

Jarmo Annunen jannunen

View GitHub Profile
@jannunen
jannunen / Popover.vue
Created September 4, 2022 10:02
How to create Popover component (Vue3, script setup and BS5)
<template>
<slot />
</template>
<script setup>
import { Popover } from 'bootstrap'
import { onMounted } from 'vue'
import { useSlots } from 'vue';
const slots = useSlots();
const props = defineProps({