Skip to content

Commit

Permalink
feat: add @braid/vue-formulate to the detectable plugins (#19)
Browse files Browse the repository at this point in the history
  • Loading branch information
justin-schroeder committed Sep 10, 2020
1 parent 7ae42ca commit 230b414
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Expand Up @@ -57,6 +57,7 @@ To support a new UI library, please look at [detectors/uis.json](detectors/uis.j
- [Vue Apollo](https://apollo.vuejs.org)
- [Vue Warehouse](https://marquez.co/docs/vue-warehouse)
- [Vue i18n](https://kazupon.github.io/vue-i18n/)
- [Vue Formulate](https://vueformulate.com/)

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

Expand Down
11 changes: 11 additions & 0 deletions detectors/plugins.json
Expand Up @@ -73,5 +73,16 @@
"detectors": {
"js": "[...document.querySelectorAll('*')].map((el) => Boolean(el.__vue__ && el.__vue__.$i18n)).filter(Boolean).length"
}
},
"@braid/vue-formulate": {
"metas": {
"slug": "vue-formulate",
"name": "@braid/vue-formulate",
"imgPath": "/plugins/vue-formulate.svg",
"url": "https://vueformulate.com/"
},
"detectors": {
"js": "Boolean([...document.querySelectorAll('*')].find((el) => Boolean(el.__vue__ && el.__vue__.$formulate)))"
}
}
}
2 changes: 2 additions & 0 deletions icons/plugins/vue-formulate.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 230b414

Please sign in to comment.