1.1.1 • Published 1 year ago

vue-tooltip-xd v1.1.1

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

npm version License

Getting started

  1. Install the component:
npm i vue-tooltip-xd
  1. Add the plugin into your app:
import { createApp } from "vue";
import App from "./App.vue";

import vueToolTip from "vue-tooltip-xd";
import "vue-tooltip-xd/dist/style.css";

const app = createApp(App);

app.use(vueToolTip);
app.mount("#app");
  1. Add the Component in yout HTML
<vue-tooltip
    placement="bottom"
    content="The ToolTip Text">
    <button>Push Me</button>
</vue-tooltip>

The available placement are:

  • top
  • bottom
  • left
  • right

the default value is bottom

  1. Style variables
/* colors var */
--clr-vue-tooltip-bg        /*background-color for the ToolTip */
--clr-vue-tooltip-text      /*color for the ToolTip */
/* font var*/
--font-vue-tooltip-family   /*font-family for the ToolTip */
--font-vue-tooltip-size     /*font-size for the ToolTip */
/* time to display the tooltip */
--time-vue-tooltip

Follow the Project at GitHub https://github.com/christoph-xd/vue-tooltip-xd.git .

1.1.1

1 year ago

1.1.0

1 year ago

1.0.1

1 year ago

0.2.6

1 year ago

0.2.5

1 year ago

0.2.4

1 year ago

0.2.3

1 year ago

0.2.2

1 year ago

0.2.1

1 year ago

0.2.0

1 year ago

0.1.11

1 year ago

0.1.10

1 year ago

0.1.9

1 year ago

0.1.8

1 year ago

0.1.7

1 year ago

0.1.6

1 year ago

0.1.5

1 year ago

0.1.4

1 year ago

0.1.3

1 year ago

0.1.2

1 year ago

0.1.1

1 year ago

0.1.0

1 year ago