Skip to content

Commit 047ca40

Browse files
HZoolyatinux
andauthored
feat: Add Vue Tour plugin detector (#65)
Co-authored-by: Sébastien Chopin <[email protected]>
1 parent 34c4840 commit 047ca40

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ To support a new UI library, please look at [detectors/uis.json](detectors/uis.j
6363
- [Inertia.js](https://inertiajs.com)
6464
- [vee-validate](https://vee-validate.logaretm.com)
6565
- [Vue Composition API](https://github.com/vuejs/composition-api)
66+
- [Vue Tour](https://github.com/pulsardev/vue-tour)
6667
- [Pinia](https://github.com/posva/pinia)
6768

6869
To support a new Vue plugin, please look at [detectors/plugins.json](detectors/plugins.json).

detectors/plugins.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -138,6 +138,17 @@
138138
"js": "window.Vue?.$plausible || window.$nuxt?.$plausible || Boolean([...document.querySelectorAll('*')].find((el) => Boolean(el.__vue__?.$plausible)))"
139139
}
140140
},
141+
"vue-tour": {
142+
"metas": {
143+
"slug": "vue-tour",
144+
"name": "vue-tour",
145+
"imgPath": null,
146+
"url": "https://github.com/pulsardev/vue-tour"
147+
},
148+
"detectors": {
149+
"js": "window.Vue?.$tours || window.$nuxt?.$tours || Boolean([...document.querySelectorAll('*')].find((el) => Boolean(el.__vue__?.$tours)))"
150+
}
151+
},
141152
"pinia": {
142153
"metas": {
143154
"slug": "pinia",

0 commit comments

Comments
 (0)