
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
vue-light-tooltip
Advanced tools
A simple and lightweight tooltip for Vue JS.
npm install --save vue-light-tooltip
<template>
<div class="hello">
<h1>Hello World!</h1>
<tooltip parent="Hover here" type="span" tooltipText="Tooltip appears!" :styles="{color:'red', 'font-size':'24px'}>
</tooltip>
</div>
</template>
<script>
import tooltip from 'vue-light-tooltip';
export default {
name: 'HelloWorld',
components: {
tooltip,
},
};
</script>
<style>
// styles come here
</style>
Use disabled flag to dynamically disable tooltip in runtime. By default the value is set "false".
<tooltip parent="Hover here" type="span" tooltipText="Tooltip appears!" v-bind:disabled="true">
</tooltip>
Use position flag to set position of tooltip. By default the value is "up".
<tooltip parent="Hover here" type="span" tooltipText="Tooltip appears!" position="down">
</tooltip>
Use length flag to set length of tooltip. By default the value is "small".
<tooltip parent="Hover here" type="span" tooltipText="Tooltip appears!" length="large">
</tooltip>
You can use Html special characters, emojis or third party fonts like "Font awesome".
<tooltip parent="Hover here" type="span" tooltipText="Tooltip has HTML special characters: ☻ ✂ ♜">
</tooltip>
<tooltip parent="Hover here" type="span" tooltipText="Tooltip has Emojis: 😀 😬 😁 😂 😃 😄 😅 😆">
</tooltip>
<tooltip parent="Hover here" type="span" tooltipText="Tooltip Font Awesome Icons:    ">
</tooltip>
Made by Sree Krishna Raja Github@sreekrishnaraja Twitter@sreekrishnaraja
CSS is taken from source code of Balloon CSS by kazzkiq which is published under MIT license.
This library (vue-light-tooltip) is Published under MIT license.
FAQs
A lightweight tooltip for Vue.js
We found that vue-light-tooltip demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.