This package has been deprecated

Author message:

v-tooltip is recommended

vp-vue-hint.css

0.2.0 • Public • Published

vue-hint.css

Vue directive for hint.css

GitHub stars GitHub license GitHub license

Install

npm

npm install -D vp-vue-hint.css
import Vue from 'vue'
import vueHintCss from 'vp-vue-hint.css'
Vue.use(vueHintCss)

CDN

<link rel="stylesheet" href="https://unpkg.com/hint.css"></link>
<script src="https://cdn.jsdelivr.net/npm/vue"></script>
<script src="https://unpkg.com/vp-vue-hint.css"></script>
<script>
  Vue.use(vueHintCss)
</script> 

Usage

Check codepen example.

Basic

<button v-hint-css="'hover me!!!'">

Modifiers

With Modifiers:

<button v-hint-css.right.warning.small.bounce.always.rounded="options">

Modifiers First:

With modifier .static, modifiers will have higher priority than options.

<button v-hint-css.right.warning.small.bounce.always.rounded.static="options">

Advanced

<template>
  <button v-hint-css="options">
</template>
<script>
  export default {
    data () {
      return {
        options: {
          text: null,
            //               (default)
            // 'top-left'      'top'     'top-right'
            // 'left'                        'right'
            // 'bottom-left' 'bottom' 'bottom-right'
          direction: null,
          color: null, // 'error', 'info'(default), 'warning', 'success'
          size: null, // 'small', 'medium', 'large'
          always: false,
          rounded: false,
          effect: null // 'no-animate', 'bounce'
        }
      }
    }
  }
</script> 

Plugin options

Vue.use(vueHintCss, {
  directive: 'hint-css',
  prefixClass: 'hint--',
  attr: 'aria-label' // or 'data-hint'
})

Default values

Vue.use(vueHintCss, {
  defaultText: 'Default Text',
  defaultDirection: 'bottom',
  defaultColor: 'warning',
  defaultSize: 'large',
  defaultAlways: true,
  defaultRounded: true,
  defaultEffect: 'bounce'
})

Default values are reactive:

import vueHintCss, {defaultOptions} from 'vp-vue-hint.css'
 
Vue.use(vueHintCss)
defaultOptions.text: 'Default Text',
defaultOptions.direction: 'bottom',
defaultOptions.color: 'warning',
defaultOptions.size: 'large',
defaultOptions.always: true,
defaultOptions.rounded: true,
defaultOptions.effect: 'bounce'

Package Sidebar

Install

npm i vp-vue-hint.css

Weekly Downloads

8

Version

0.2.0

License

MIT

Last publish

Collaborators

  • vdustr