Search
 
SCRIPT & CODE EXAMPLE
 

TYPESCRIPT

vue 3 bootstrap 5 tooltip

// In App.vue
import { Tooltip } from "bootstrap";

new Tooltip(document.body, {
  selector: "[data-bs-toggle='tooltip']",
});

// In your template
<span
  data-bs-toggle="tooltip"
  data-bs-placement="bottom"
  data-bs-html="true"
  title="<u>Tooltip</u>"
>
  Text with tooltip
</span>
Comment

PREVIOUS NEXT
Code Example
Typescript :: how to make comments in .env files 
Typescript :: how to access elements in bash array 
Typescript :: binding reference of type discards qualifiers 
Typescript :: a href without redirecting 
Typescript :: vue3 backend django 
Typescript :: ionic 5 formarray 
Typescript :: mat stepper dont clickable 
Typescript :: woocommerce sql query pulls products from category 
Typescript :: how to get just the ports in kubernetes 
Typescript :: typescript if then shorthand 
Typescript :: parser error cannot read tsconfig.dev.json 
Typescript :: how to route to another page in angular 
Typescript :: typescript array to string 
Typescript :: list of continents 
Typescript :: regex match round brackets contains any characters 
Typescript :: typescript integer 
Typescript :: custom fonts vue 
Typescript :: typescript bigint vs number 
Typescript :: mat-form-field email validation 
Typescript :: angular firestore timestamp date pipe 
Typescript :: typescript get object value 
Typescript :: typescript function return array 
Typescript :: sort a list of ints python in descending order 
Typescript :: list of lists python 
Typescript :: check only digits in dart 
Typescript :: check if schema exists sql server 
Typescript :: how to convert millisecond to second to date momentjs 
Typescript :: bullets in latex with header 
Typescript :: how to add id in array javascript 
Typescript :: how to check if key exists in json object c# 
ADD CONTENT
Topic
Content
Source link
Name
3+3 =