Dashboard
5 |Settings
6 |{{ count }}
4 | 5 | 6 | 7 | 18 | -------------------------------------------------------------------------------- /components/Home/HomeWelcome.vue: -------------------------------------------------------------------------------- 1 | 2 |Dashboard
5 |Settings
6 |19 | {{ _error }} 20 |
21 |Welcome Sarthak
3 | 4 | 5 | 11 | -------------------------------------------------------------------------------- /public/images/iphone-12-pro.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitfumes/nuxtjs-course-2022/3f7bb1dd7c6a95387a6581860dde39eba232054a/public/images/iphone-12-pro.webp -------------------------------------------------------------------------------- /public/images/iphone-12.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitfumes/nuxtjs-course-2022/3f7bb1dd7c6a95387a6581860dde39eba232054a/public/images/iphone-12.webp -------------------------------------------------------------------------------- /public/images/iphone-13-pro.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitfumes/nuxtjs-course-2022/3f7bb1dd7c6a95387a6581860dde39eba232054a/public/images/iphone-13-pro.webp -------------------------------------------------------------------------------- /public/images/iphone-13.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitfumes/nuxtjs-course-2022/3f7bb1dd7c6a95387a6581860dde39eba232054a/public/images/iphone-13.webp -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | * -------------------------------------------------------------------------------- /server/api/iphones.ts: -------------------------------------------------------------------------------- 1 | export default defineEventHandler(() => { 2 | return ["iphone-12", "iphone-12-pro", "iphone-13", "iphone-13-pro"]; 3 | }); 4 | -------------------------------------------------------------------------------- /server/routes/iphones.ts: -------------------------------------------------------------------------------- 1 | export default defineEventHandler(() => { 2 | return ["iphone-12", "iphone-12-pro", "iphone-13", "iphone-13-pro"]; 3 | }); 4 | -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- 1 | /** @type {import('tailwindcss').Config} */ 2 | module.exports = { 3 | content: [ 4 | "./components/**/*.{js,vue,ts}", 5 | "./layouts/**/*.vue", 6 | "./pages/**/*.vue", 7 | "./plugins/**/*.{js,ts}", 8 | "./nuxt.config.{js,ts}", 9 | ], 10 | theme: { 11 | extend: {}, 12 | }, 13 | plugins: [], 14 | }; 15 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | // https://v3.nuxtjs.org/concepts/typescript 3 | "extends": "./.nuxt/tsconfig.json" 4 | } 5 | --------------------------------------------------------------------------------