├── .gitignore ├── .vscode └── extensions.json ├── README.md ├── index.html ├── package.json ├── postcss.config.cjs ├── public └── vite.svg ├── src ├── App.vue ├── axios.js ├── components │ ├── ForgotPassword.vue │ ├── Home.vue │ ├── Login.vue │ ├── Nav.vue │ ├── Register.vue │ └── ResetPassword.vue ├── main.js ├── router │ └── index.js ├── stores │ └── auth.js └── style.css ├── tailwind.config.cjs └── vite.config.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/vue-authentication-breeze-api/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- 1 | { 2 | "recommendations": ["Vue.volar"] 3 | } 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/vue-authentication-breeze-api/HEAD/README.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/vue-authentication-breeze-api/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/vue-authentication-breeze-api/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/vue-authentication-breeze-api/HEAD/postcss.config.cjs -------------------------------------------------------------------------------- /public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/vue-authentication-breeze-api/HEAD/public/vite.svg -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/vue-authentication-breeze-api/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/axios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/vue-authentication-breeze-api/HEAD/src/axios.js -------------------------------------------------------------------------------- /src/components/ForgotPassword.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/vue-authentication-breeze-api/HEAD/src/components/ForgotPassword.vue -------------------------------------------------------------------------------- /src/components/Home.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/vue-authentication-breeze-api/HEAD/src/components/Home.vue -------------------------------------------------------------------------------- /src/components/Login.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/vue-authentication-breeze-api/HEAD/src/components/Login.vue -------------------------------------------------------------------------------- /src/components/Nav.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/vue-authentication-breeze-api/HEAD/src/components/Nav.vue -------------------------------------------------------------------------------- /src/components/Register.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/vue-authentication-breeze-api/HEAD/src/components/Register.vue -------------------------------------------------------------------------------- /src/components/ResetPassword.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/vue-authentication-breeze-api/HEAD/src/components/ResetPassword.vue -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/vue-authentication-breeze-api/HEAD/src/main.js -------------------------------------------------------------------------------- /src/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/vue-authentication-breeze-api/HEAD/src/router/index.js -------------------------------------------------------------------------------- /src/stores/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/vue-authentication-breeze-api/HEAD/src/stores/auth.js -------------------------------------------------------------------------------- /src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/vue-authentication-breeze-api/HEAD/src/style.css -------------------------------------------------------------------------------- /tailwind.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/vue-authentication-breeze-api/HEAD/tailwind.config.cjs -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyxhepa/vue-authentication-breeze-api/HEAD/vite.config.js --------------------------------------------------------------------------------