{"id":21632222,"url":"https://github.com/chanlito/vuetify-tsx","last_synced_at":"2025-07-17T13:32:14.196Z","repository":{"id":33952985,"uuid":"148802472","full_name":"chanlito/vuetify-tsx","owner":"chanlito","description":"Vuetify TSX is just a wrapper lib around vuetify components.","archived":true,"fork":false,"pushed_at":"2023-01-03T15:19:18.000Z","size":3671,"stargazers_count":20,"open_issues_count":30,"forks_count":6,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-07-12T15:05:07.040Z","etag":null,"topics":["jsx","tsx","typescript","vuetify","vuetifyjs"],"latest_commit_sha":null,"homepage":"https://vuetify-tsx.netlify.com","language":"TypeScript","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/chanlito.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2018-09-14T14:47:59.000Z","updated_at":"2024-07-12T01:32:08.000Z","dependencies_parsed_at":"2023-01-15T03:34:20.439Z","dependency_job_id":null,"html_url":"https://github.com/chanlito/vuetify-tsx","commit_stats":null,"previous_names":[],"tags_count":47,"template":false,"template_full_name":null,"purl":"pkg:github/chanlito/vuetify-tsx","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chanlito%2Fvuetify-tsx","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chanlito%2Fvuetify-tsx/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chanlito%2Fvuetify-tsx/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chanlito%2Fvuetify-tsx/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/chanlito","download_url":"https://codeload.github.com/chanlito/vuetify-tsx/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chanlito%2Fvuetify-tsx/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":265611205,"owners_count":23797836,"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":["jsx","tsx","typescript","vuetify","vuetifyjs"],"created_at":"2024-11-25T02:42:21.304Z","updated_at":"2025-07-17T13:32:13.910Z","avatar_url":"https://github.com/chanlito.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Vuetify TSX\n\n[![Netlify Status](https://api.netlify.com/api/v1/badges/f2703aa2-8278-4f58-9f2a-ffa5fe1bb5c5/deploy-status)](https://app.netlify.com/sites/vuetify-tsx/deploys)\n\nVuetify TSX is just a wrapper lib around vuetify components.\n\nThis lib uses [`vue-tsx-support`](https://github.com/wonderful-panda/vue-tsx-support) under the hood to support TSX (JSX for TypeScript).\n\n## Setup\n\n```bash\nyarn add vuetify-tsx\n# OR\nnpm install vuetify-tsx\n```\n\n## Usage\n\n```tsx\nimport { component } from 'vue-tsx-support';\n\nimport { VApp, VContent } from 'vuetify-tsx';\n\n// or import directly\nimport VApp from 'vuetify-tsx/lib/components/VApp';\nimport VContent from 'vuetify-tsx/lib/components/VContent';\n\nconst App = component({\n  name: 'App',\n  render() {\n    return (\n      \u003cVApp\u003e\n        \u003cVContent\u003e\n          \u003crouter-view /\u003e\n        \u003c/VContent\u003e\n      \u003c/VApp\u003e\n    );\n  },\n});\n\nexport default App;\n```\n\nFor more examples, see the [examples](https://github.com/chanlito/vuetify-tsx/tree/master/src/views/examples) folder in this repository.  \nYou can see the examples by checking out the project and using `npm install` and then `npm run serve`.\n\n## Tip\n\nUse `babel-plugin-import` to reduce bundle size.\n\n```js\n// inside babel.config.js\nmodule.exports = {\n  presets: ['@vue/app'],\n  plugins: [\n    [\n      'import',\n      {\n        libraryName: 'vuetify-tsx',\n        libraryDirectory: 'lib/components',\n        camel2DashComponentName: false,\n      },\n    ],\n  ],\n};\n```\n\n## Contributors\n\nThis project exists thanks to all the people who [contribute](https://github.com/chanlito/vuetify-tsx/graphs/contributors) 🚀!\n\n## LICENSE\n\n[MIT](https://opensource.org/licenses/MIT)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fchanlito%2Fvuetify-tsx","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fchanlito%2Fvuetify-tsx","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fchanlito%2Fvuetify-tsx/lists"}