├── .gitignore ├── README.md ├── app.vue ├── nuxt.config.ts ├── package.json ├── plugins └── vuetify.ts ├── settings.scss ├── tsconfig.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyBontecou/nuxt3-and-vuetify/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyBontecou/nuxt3-and-vuetify/HEAD/README.md -------------------------------------------------------------------------------- /app.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyBontecou/nuxt3-and-vuetify/HEAD/app.vue -------------------------------------------------------------------------------- /nuxt.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyBontecou/nuxt3-and-vuetify/HEAD/nuxt.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyBontecou/nuxt3-and-vuetify/HEAD/package.json -------------------------------------------------------------------------------- /plugins/vuetify.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyBontecou/nuxt3-and-vuetify/HEAD/plugins/vuetify.ts -------------------------------------------------------------------------------- /settings.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyBontecou/nuxt3-and-vuetify/HEAD/settings.scss -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyBontecou/nuxt3-and-vuetify/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodyBontecou/nuxt3-and-vuetify/HEAD/yarn.lock --------------------------------------------------------------------------------