{"id":20021958,"url":"https://github.com/haehnchen/idea-vuejs-plugin","last_synced_at":"2025-09-20T04:32:22.442Z","repository":{"id":224186783,"uuid":"762379521","full_name":"Haehnchen/idea-vuejs-plugin","owner":"Haehnchen","description":"Vue.js 3 Toolbox Plugin for PhpStorm / Intellij","archived":false,"fork":false,"pushed_at":"2024-02-27T18:48:25.000Z","size":248,"stargazers_count":6,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-04-03T02:01:40.065Z","etag":null,"topics":["intelij","intellij-plugin","java","javascript","phpstorm","typescript","vuejs","vuejs3"],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Haehnchen.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":".github/FUNDING.yml","license":null,"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},"funding":{"github":["Haehnchen"],"custom":"https://www.paypal.me/DanielEspendiller"}},"created_at":"2024-02-23T16:53:23.000Z","updated_at":"2025-02-13T08:48:10.000Z","dependencies_parsed_at":"2024-11-13T09:30:56.736Z","dependency_job_id":null,"html_url":"https://github.com/Haehnchen/idea-vuejs-plugin","commit_stats":null,"previous_names":["haehnchen/idea-vuejs-plugin"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/Haehnchen/idea-vuejs-plugin","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Haehnchen%2Fidea-vuejs-plugin","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Haehnchen%2Fidea-vuejs-plugin/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Haehnchen%2Fidea-vuejs-plugin/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Haehnchen%2Fidea-vuejs-plugin/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Haehnchen","download_url":"https://codeload.github.com/Haehnchen/idea-vuejs-plugin/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Haehnchen%2Fidea-vuejs-plugin/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":276046893,"owners_count":25575876,"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","status":"online","status_checked_at":"2025-09-20T02:00:10.207Z","response_time":63,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":["intelij","intellij-plugin","java","javascript","phpstorm","typescript","vuejs","vuejs3"],"created_at":"2024-11-13T08:38:45.085Z","updated_at":"2025-09-20T04:32:22.173Z","avatar_url":"https://github.com/Haehnchen.png","language":"Java","funding_links":["https://github.com/sponsors/Haehnchen","https://www.paypal.me/DanielEspendiller"],"categories":[],"sub_categories":[],"readme":"# IntelliJ IDEA / PhpStorm Vue.js Toolbox Plugin\n\n[![Build Status](https://github.com/Haehnchen/idea-vuejs-plugin/actions/workflows/gradle.yml/badge.svg?branch=master)](https://github.com/Haehnchen/idea-vuejs-plugin/actions/workflows/gradle.yml)\n[![Version](http://phpstorm.espend.de/badge/23832/version)](https://plugins.jetbrains.com/plugin/23832)\n[![Downloads](http://phpstorm.espend.de/badge/23832/downloads)](https://plugins.jetbrains.com/plugin/23832)\n[![Downloads last month](http://phpstorm.espend.de/badge/23832/last-month)](https://plugins.jetbrains.com/plugin/23832)\n\n| Key           | Value                                                     |\n|---------------|-----------------------------------------------------------|\n| Plugin Url    | https://plugins.jetbrains.com/plugin/23832-vue-js-toolbox |\n| ID            | de.espend.idea.vuejs                                      |\n| Documentation | https://espend.de/phpstorm/plugin/vuejs-toolbox           |\n| Changelog     | [CHANGELOG](CHANGELOG.md)                                 |\n\n## Install\n\n* Install the plugin by going to `Settings -\u003e Plugins -\u003e Browse repositories` and then search for `Vue.js Toolbox`.\n\n## Component Usages\n\n### Navigation to component usages\n\n```vue\n\u003c-- ButtonCounter.vue --\u003e\n\u003ctemplate/\u003e\n```\n\n#### Target\n\n```vue\n\u003c-- AnotherFile.vue --\u003e\n\u003cscript\u003e\nimport ButtonCounter from './ButtonCounter.vue'\n\u003c/script\u003e\n\n\u003ctemplate\u003e\n  \u003cButtonCounter /\u003e\n  \u003cbutton-counter /\u003e\n\u003c/template\u003e\n```\n\n### Infile navigation via LineMarker\n\n```vue\n\u003ctemplate\u003e\n  \u003cButtonCounter /\u003e\n  \u003cbutton-counter /\u003e\n\u003c/template\u003e\n```\n\n#### Targets\n\n```vue\n\u003cscript setup\u003e\n    import ButtonCounter from './ButtonCounter.vue'\n\u003c/script\u003e\n```\n\n```javascript\nexport default {\n  components: {\n    ButtonCounter\n  }\n}\n```\n\n```javascript\n@Component({\n  components: {\n    ButtonCounter,\n  },\n})\nexport default {}\n```\n\nEntrypoint\n---------------------\n\n# Linemarker for vue.js targeting its creation\n\n```javascript\nimport App from './App.vue'\nconst app = createApp(App)\n```\n\n```javascript\nimport Vue from 'vue'\nimport App from './App.vue'\n\nconst app = new Vue({\n    render: (createElement) =\u003e createElement(App)\n});\n```\n\n```javascript\nimport App from './App.vue';\nnew App().$mount(el);\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhaehnchen%2Fidea-vuejs-plugin","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhaehnchen%2Fidea-vuejs-plugin","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhaehnchen%2Fidea-vuejs-plugin/lists"}