Aknaproff/resources/js/components/TooltipComponent.vue
2023-09-21 13:45:08 +01:00

10 lines
202 B
Vue

<template>
<span class="text-success">
<i class="fas fa-info-circle ml-1" data-toggle="tooltip" :title="tooltip"></i>
</span>
</template>
<script>
export default {
props:['tooltip'],
}
</script>