{"id":13406459,"url":"https://github.com/KABBOUCHI/vue-tippy","last_synced_at":"2025-03-14T11:30:26.972Z","repository":{"id":37440715,"uuid":"89856870","full_name":"KABBOUCHI/vue-tippy","owner":"KABBOUCHI","description":"VueJS Tooltip powered by Tippy.js","archived":false,"fork":false,"pushed_at":"2024-09-12T12:13:37.000Z","size":8422,"stargazers_count":727,"open_issues_count":26,"forks_count":89,"subscribers_count":10,"default_branch":"main","last_synced_at":"2024-09-12T23:31:15.783Z","etag":null,"topics":["javascript","tippy","tippyjs","tooltip","vue","vuejs"],"latest_commit_sha":null,"homepage":"https://vue-tippy.netlify.app","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/KABBOUCHI.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2017-04-30T14:48:57.000Z","updated_at":"2024-09-12T16:44:18.000Z","dependencies_parsed_at":"2023-01-31T19:31:45.953Z","dependency_job_id":"efe90be3-f5ca-41d9-9637-0063472817d7","html_url":"https://github.com/KABBOUCHI/vue-tippy","commit_stats":{"total_commits":204,"total_committers":7,"mean_commits":"29.142857142857142","dds":0.0490196078431373,"last_synced_commit":"a1f20be60a4b1b4fcc8f9052e43d567d84c34fab"},"previous_names":[],"tags_count":187,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KABBOUCHI%2Fvue-tippy","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KABBOUCHI%2Fvue-tippy/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KABBOUCHI%2Fvue-tippy/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KABBOUCHI%2Fvue-tippy/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/KABBOUCHI","download_url":"https://codeload.github.com/KABBOUCHI/vue-tippy/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243569001,"owners_count":20312344,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["javascript","tippy","tippyjs","tooltip","vue","vuejs"],"created_at":"2024-07-30T19:02:30.833Z","updated_at":"2025-03-14T11:30:26.576Z","avatar_url":"https://github.com/KABBOUCHI.png","language":"TypeScript","funding_links":[],"categories":["TypeScript","JavaScript"],"sub_categories":[],"readme":"# VueTippy - V6\n\n[![npm](https://img.shields.io/npm/v/vue-tippy/latest.svg)](https://www.npmjs.com/package/vue-tippy) [![vue2](https://img.shields.io/badge/vue-3.x-brightgreen.svg)](https://vuejs.org/) [![download](https://img.shields.io/npm/dt/vue-tippy.svg)](https://www.npmjs.com/package/vue-tippy)\n\n\u003e Vue.js 3 wrapper for Tippy.js\n\n\u003caside class=\"notice\"\u003e\n\u003ca href=\"https://github.com/KABBOUCHI/vue-tippy/tree/v4\"\u003eFor Tippy.js v4 use v4 branch\u003c/a\u003e\n\u003c/aside\u003e\n\n\n## Documentation\n\nFor full v6 documentation, visit [https://vue-tippy.netlify.app/](https://vue-tippy.netlify.app/).\n\n## Installation\n\n```js\nnpm install vue-tippy@v6\n\n//or\n\nyarn add vue-tippy@v6\n```\n\n## Configuration (optional)\n\n```js\nimport { createApp } from 'vue'\n\nimport VueTippy from 'vue-tippy'\n// or\nimport { plugin as VueTippy } from 'vue-tippy'\n\nconst app = createApp({})\n\napp.use(\n  VueTippy,\n  // optional\n  {\n    directive: 'tippy', // =\u003e v-tippy\n    component: 'tippy', // =\u003e \u003ctippy/\u003e\n  }\n)\n\napp.mount('#app')\n```\n\n## Usage\n\n### Vue Directive\n\n```html\n\u003ctemplate\u003e\n  \u003cbutton v-tippy=\"{ content: 'Hi!' }\"\u003eTippy!\u003c/button\u003e\n  \u003cbutton v-tippy=\"'Hello!'\"\u003eTippy!\u003c/button\u003e\n\u003c/template\u003e\n\n\u003cscript setup\u003e\nimport { directive as VTippy } from 'vue-tippy'\n\u003c/script\u003e\n```\n\n### Vue Component\n\n```html\n\u003ctemplate\u003e\n  \u003cTippy content=\"Hi!\"\u003e\n    \u003cbutton\u003eTippy!\u003c/button\u003e\n  \u003c/Tippy\u003e\n\u003c/template\u003e\n\n\u003cscript setup\u003e\nimport { Tippy } from 'vue-tippy'\n\u003c/script\u003e\n```\n\n### Using composition api\n\n```js\nimport { defineComponent, ref, h } from 'vue'\nimport { useTippy } from 'vue-tippy'\n\nexport default defineComponent({\n  setup() {\n    const button = ref()\n\n    useTippy(button, {\n      content: 'Hi!',\n    })\n\n    return () =\u003e h('button', { ref: button }, 'Tippy!')\n  },\n})\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FKABBOUCHI%2Fvue-tippy","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FKABBOUCHI%2Fvue-tippy","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FKABBOUCHI%2Fvue-tippy/lists"}