{"id":19422818,"url":"https://github.com/rc6799/nuxt3-vuetify3-starter","last_synced_at":"2025-10-08T08:43:56.224Z","repository":{"id":169821349,"uuid":"626454938","full_name":"RC6799/nuxt3-vuetify3-starter","owner":"RC6799","description":"This is starter by nuxt3-vuetify3","archived":false,"fork":false,"pushed_at":"2023-05-28T18:19:43.000Z","size":1355,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-25T04:31:42.186Z","etag":null,"topics":["nuxt3","vuetify3"],"latest_commit_sha":null,"homepage":"","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/RC6799.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-04-11T13:57:54.000Z","updated_at":"2024-02-07T03:05:56.000Z","dependencies_parsed_at":null,"dependency_job_id":"3392b3bb-e6d3-4a10-b2c8-1b41b33d5aef","html_url":"https://github.com/RC6799/nuxt3-vuetify3-starter","commit_stats":null,"previous_names":["rc6799/nuxt3-vuetify3-starter"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/RC6799/nuxt3-vuetify3-starter","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RC6799%2Fnuxt3-vuetify3-starter","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RC6799%2Fnuxt3-vuetify3-starter/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RC6799%2Fnuxt3-vuetify3-starter/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RC6799%2Fnuxt3-vuetify3-starter/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/RC6799","download_url":"https://codeload.github.com/RC6799/nuxt3-vuetify3-starter/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RC6799%2Fnuxt3-vuetify3-starter/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":278916444,"owners_count":26068090,"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-10-08T02:00:06.501Z","response_time":56,"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":["nuxt3","vuetify3"],"created_at":"2024-11-10T13:35:24.895Z","updated_at":"2025-10-08T08:43:56.204Z","avatar_url":"https://github.com/RC6799.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Nuxt 3 + Vuetify 3 Starter\n\n![Starter Image](/public/starter.png)\nSoooo... Vuetify just released version 3.. Nuxt is at rc13 (will be released soon).\nThis template here will get you up \u0026 running with adding the two together!! :)\n\n\n## Demo Here\n\n[Online Demo](https://vuetify3nuxt3starter.behonbaker.com)\n### Run the app\n\n1. Install the deps\n\n```bash\nnpm install\n```\n\n2. Run the app\n\n```bash\nnpm run dev\n```\n\n### Stuff used\n\n- NuxtJS\n- Nuxt Icon\n- Sass\n- Vuetify\n- kevinmarrec/nuxt-pwa\n- Vite Plugin Vuetify\n\n### Custom Sass File\n\nThe `.scss` file that can be found in the `assets` folder have some gradients \u0026 other styles. They can be deleted or updated.\n\n### Helpers Folder\n\nThe helper folder contains the custom stuff for the Vuetify plugin\n\n#### Custom Icons - `customIcons.ts`\n\n1. Create the Icon component that will be used to render the icons. I just extended the Icon component from the `nuxt-icon` package.\n\n```vue\n\u003ctemplate\u003e\n\t\u003cdiv\u003e\n\t\t\u003cIcon v-bind=\"$attrs\" /\u003e\n\t\u003c/div\u003e\n\u003c/template\u003e\n\u003cscript setup\u003e\u003c/script\u003e\n```\n\n2. Create the `aliases` object. Ensure that you pass in all the icons that are used by the Vuetify system.\n\n3. Create the `custom` object.\n\n```ts\nconst custom: IconSet = {\n\tcomponent: (props: IconProps) =\u003e\n\t\t// Return render function\n\t\th(MIcon, {\n\t\t\tname: props.icon /** The Icon component requires the name prop in order to render the correct icon */,\n\t\t\ttag: props.tag,\n\t\t\tdisabled: props.disabled,\n\t\t}),\n};\n```\n\nHere is a link to the docs for this [Creating a custom iconset](https://next.vuetifyjs.com/en/features/icon-fonts/#creating-a-custom-icon-set)\n\n#### Global Defaults - `defaults.ts`\n\nThis file here just set global props on different vuetify components. You can learn more here [Global Configuration](https://next.vuetifyjs.com/en/features/global-configuration/)\n\n#### Themes - `themes.ts`\n\nThis file will hold all the different themes that you want to use in your app. Feel free to add more crazy schemes lol. Learn more here: [Vuetify Themes](https://next.vuetifyjs.com/en/features/theme/)\n\n#### Form Rules - Composable\n\nI added one composable for form rules. Add more here. You can even try integrating other validation packages like `yup` or `zod`\n\n#### Icons\n\nThe public folder contains a `favicon` \u0026 `icon`. Change these out for your app and be sure to tweak the pwa config inside the `nuxt.config` file to fit your app\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frc6799%2Fnuxt3-vuetify3-starter","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frc6799%2Fnuxt3-vuetify3-starter","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frc6799%2Fnuxt3-vuetify3-starter/lists"}