├── .editorconfig ├── .eslintrc.js ├── .gitignore ├── .prettierrc ├── LICENSE.md ├── README.md ├── assets └── css │ └── tailwind.css ├── components ├── highlight.vue ├── icon │ ├── icon-announcement.vue │ ├── icon-arrow-sub.vue │ ├── icon-bullet.vue │ ├── icon-code.vue │ ├── icon-file-text.vue │ ├── icon-file.vue │ ├── icon-github.vue │ ├── icon-grid-action.vue │ ├── icon-grid-advanced.vue │ ├── icon-grid-checkbox.vue │ ├── icon-grid-click.vue │ ├── icon-grid-clone.vue │ ├── icon-grid-column.vue │ ├── icon-grid-custom.vue │ ├── icon-grid-export.vue │ ├── icon-grid-filter.vue │ ├── icon-grid-loader.vue │ ├── icon-grid-method.vue │ ├── icon-grid-pagination.vue │ ├── icon-grid-search.vue │ ├── icon-grid-skin.vue │ ├── icon-grid-slot.vue │ ├── icon-grid-sort.vue │ ├── icon-grid-static.vue │ ├── icon-grid-sticky.vue │ ├── icon-grid.vue │ └── icon-printer.vue └── layout │ ├── layout-footer.vue │ ├── layout-header.vue │ └── layout-sidebar.vue ├── layouts └── default.vue ├── nuxt.config.ts ├── package-lock.json ├── package.json ├── pages ├── actions.vue ├── advanced.vue ├── alt-pagination.vue ├── basic.vue ├── changelog.vue ├── checkbox.vue ├── column-filter.vue ├── columnchooser.vue ├── custom-message.vue ├── custom-page-size.vue ├── export.vue ├── header-clone.vue ├── index.vue ├── methods.vue ├── pagination-hide.vue ├── rowclick.vue ├── search.vue ├── skeleton-loader.vue ├── skin.vue ├── slot.vue ├── sorting.vue ├── static-mode.vue └── sticky-header.vue ├── public ├── assets │ └── images │ │ ├── flags │ │ ├── AC.svg │ │ ├── AD.svg │ │ ├── AE.svg │ │ ├── AF.svg │ │ ├── AG.svg │ │ ├── AI.svg │ │ ├── AL.svg │ │ ├── AM.svg │ │ ├── AO.svg │ │ ├── AR.svg │ │ ├── AS.svg │ │ ├── AT.svg │ │ ├── AU.svg │ │ ├── AW.svg │ │ ├── AX.svg │ │ ├── AZ.svg │ │ ├── BA.svg │ │ ├── BB.svg │ │ ├── BD.svg │ │ ├── BE.svg │ │ ├── BF.svg │ │ ├── BG.svg │ │ ├── BH.svg │ │ ├── BI.svg │ │ ├── BJ.svg │ │ ├── BL.svg │ │ ├── BM.svg │ │ ├── BN.svg │ │ ├── BO.svg │ │ ├── BR.svg │ │ ├── BS.svg │ │ ├── BT.svg │ │ ├── BV.svg │ │ ├── BW.svg │ │ ├── BY.svg │ │ ├── BZ.svg │ │ ├── CA.svg │ │ ├── CC.svg │ │ ├── CD.svg │ │ ├── CF.svg │ │ ├── CG.svg │ │ ├── CH.svg │ │ ├── CI.svg │ │ ├── CK.svg │ │ ├── CL.svg │ │ ├── CM.svg │ │ ├── CN.svg │ │ ├── CO.svg │ │ ├── CR.svg │ │ ├── CU.svg │ │ ├── CV.svg │ │ ├── CW.svg │ │ ├── CX.svg │ │ ├── CY.svg │ │ ├── CZ.svg │ │ ├── DE.svg │ │ ├── DJ.svg │ │ ├── DK.svg │ │ ├── DM.svg │ │ ├── DO.svg │ │ ├── DZ.svg │ │ ├── EC.svg │ │ ├── EE.svg │ │ ├── EG.svg │ │ ├── EH.svg │ │ ├── ER.svg │ │ ├── ES.svg │ │ ├── ET.svg │ │ ├── EU.svg │ │ ├── FI.svg │ │ ├── FJ.svg │ │ ├── FK.svg │ │ ├── FM.svg │ │ ├── FO.svg │ │ ├── FR.svg │ │ ├── GA.svg │ │ ├── GB-ENG.svg │ │ ├── GB-NIR.svg │ │ ├── GB-SCT.svg │ │ ├── GB-WLS.svg │ │ ├── GB-ZET.svg │ │ ├── GB.svg │ │ ├── GD.svg │ │ ├── GE.svg │ │ ├── GF.svg │ │ ├── GG.svg │ │ ├── GH.svg │ │ ├── GI.svg │ │ ├── GL.svg │ │ ├── GM.svg │ │ ├── GN.svg │ │ ├── GP.svg │ │ ├── GQ.svg │ │ ├── GR.svg │ │ ├── GS.svg │ │ ├── GT.svg │ │ ├── GU.svg │ │ ├── GW.svg │ │ ├── GY.svg │ │ ├── HK.svg │ │ ├── HM.svg │ │ ├── HN.svg │ │ ├── HR.svg │ │ ├── HT.svg │ │ ├── HU.svg │ │ ├── ID.svg │ │ ├── IE.svg │ │ ├── IL.svg │ │ ├── IM.svg │ │ ├── IN.svg │ │ ├── IO.svg │ │ ├── IQ.svg │ │ ├── IR.svg │ │ ├── IS.svg │ │ ├── IT.svg │ │ ├── JE.svg │ │ ├── JM.svg │ │ ├── JO.svg │ │ ├── JP.svg │ │ ├── KE.svg │ │ ├── KG.svg │ │ ├── KH.svg │ │ ├── KI.svg │ │ ├── KM.svg │ │ ├── KN.svg │ │ ├── KP.svg │ │ ├── KR.svg │ │ ├── KW.svg │ │ ├── KY.svg │ │ ├── KZ.svg │ │ ├── LA.svg │ │ ├── LB.svg │ │ ├── LC.svg │ │ ├── LGBT.svg │ │ ├── LI.svg │ │ ├── LK.svg │ │ ├── LR.svg │ │ ├── LS.svg │ │ ├── LT.svg │ │ ├── LU.svg │ │ ├── LV.svg │ │ ├── LY.svg │ │ ├── MA.svg │ │ ├── MC.svg │ │ ├── MD.svg │ │ ├── ME.svg │ │ ├── MF.svg │ │ ├── MG.svg │ │ ├── MH.svg │ │ ├── MK.svg │ │ ├── ML.svg │ │ ├── MM.svg │ │ ├── MN.svg │ │ ├── MO.svg │ │ ├── MP.svg │ │ ├── MQ.svg │ │ ├── MR.svg │ │ ├── MS.svg │ │ ├── MT.svg │ │ ├── MU.svg │ │ ├── MV.svg │ │ ├── MW.svg │ │ ├── MX.svg │ │ ├── MY.svg │ │ ├── MZ.svg │ │ ├── NA.svg │ │ ├── NC.svg │ │ ├── NE.svg │ │ ├── NF.svg │ │ ├── NG.svg │ │ ├── NI.svg │ │ ├── NL.svg │ │ ├── NO.svg │ │ ├── NP.svg │ │ ├── NR.svg │ │ ├── NU.svg │ │ ├── NZ.svg │ │ ├── OM.svg │ │ ├── PA.svg │ │ ├── PE.svg │ │ ├── PF.svg │ │ ├── PG.svg │ │ ├── PH.svg │ │ ├── PK.svg │ │ ├── PL.svg │ │ ├── PM.svg │ │ ├── PN.svg │ │ ├── PR.svg │ │ ├── PS.svg │ │ ├── PT.svg │ │ ├── PW.svg │ │ ├── PY.svg │ │ ├── QA.svg │ │ ├── RE.svg │ │ ├── RH.svg │ │ ├── RO.svg │ │ ├── RS.svg │ │ ├── RU.svg │ │ ├── RW.svg │ │ ├── SA.svg │ │ ├── SB.svg │ │ ├── SC.svg │ │ ├── SD.svg │ │ ├── SE.svg │ │ ├── SG.svg │ │ ├── SH.svg │ │ ├── SI.svg │ │ ├── SJ.svg │ │ ├── SK.svg │ │ ├── SL.svg │ │ ├── SM.svg │ │ ├── SN.svg │ │ ├── SO.svg │ │ ├── SR.svg │ │ ├── SS.svg │ │ ├── ST.svg │ │ ├── SV.svg │ │ ├── SX.svg │ │ ├── SY.svg │ │ ├── SZ.svg │ │ ├── TC.svg │ │ ├── TD.svg │ │ ├── TF.svg │ │ ├── TG.svg │ │ ├── TH.svg │ │ ├── TJ.svg │ │ ├── TK.svg │ │ ├── TL.svg │ │ ├── TM.svg │ │ ├── TN.svg │ │ ├── TO.svg │ │ ├── TR.svg │ │ ├── TT.svg │ │ ├── TV.svg │ │ ├── TW.svg │ │ ├── TZ.svg │ │ ├── UG.svg │ │ ├── UK.svg │ │ ├── UK1.svg │ │ ├── UM.svg │ │ ├── US-CA.svg │ │ ├── US.svg │ │ ├── UY.svg │ │ ├── UZ.svg │ │ ├── VA.svg │ │ ├── VC.svg │ │ ├── VE.svg │ │ ├── VG.svg │ │ ├── VI.svg │ │ ├── VN.svg │ │ ├── VU.svg │ │ ├── WF.svg │ │ ├── WS.svg │ │ ├── XK.svg │ │ ├── YE.svg │ │ ├── YT.svg │ │ ├── ZA.svg │ │ ├── ZM.svg │ │ └── ZW.svg │ │ └── profile │ │ ├── profile-1.jpeg │ │ ├── profile-10.jpeg │ │ ├── profile-11.jpeg │ │ ├── profile-12.jpeg │ │ ├── profile-13.jpeg │ │ ├── profile-14.jpeg │ │ ├── profile-15.jpeg │ │ ├── profile-16.jpeg │ │ ├── profile-17.jpeg │ │ ├── profile-18.jpeg │ │ ├── profile-19.jpeg │ │ ├── profile-2.jpeg │ │ ├── profile-20.jpeg │ │ ├── profile-21.jpeg │ │ ├── profile-22.jpeg │ │ ├── profile-23.jpeg │ │ ├── profile-24.jpeg │ │ ├── profile-25.jpeg │ │ ├── profile-26.jpeg │ │ ├── profile-27.jpeg │ │ ├── profile-28.jpeg │ │ ├── profile-29.jpeg │ │ ├── profile-3.jpeg │ │ ├── profile-30.jpeg │ │ ├── profile-31.jpeg │ │ ├── profile-32.jpeg │ │ ├── profile-4.jpeg │ │ ├── profile-5.jpeg │ │ ├── profile-6.jpeg │ │ ├── profile-7.jpeg │ │ ├── profile-8.jpeg │ │ └── profile-9.jpeg ├── country.json └── data.json ├── server └── api │ └── user.post.ts ├── stores └── index.ts ├── tailwind.config.js └── tsconfig.json /.editorconfig: -------------------------------------------------------------------------------- 1 | # editorconfig.org 2 | root = true 3 | 4 | [*] 5 | indent_style = space 6 | indent_size = 4 7 | end_of_line = lf 8 | charset = utf-8 9 | trim_trailing_whitespace = true 10 | insert_final_newline = true 11 | 12 | [*.md] 13 | trim_trailing_whitespace = false -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | env: { 4 | browser: true, 5 | node: true, 6 | }, 7 | parserOptions: { 8 | parser: '@babel/eslint-parser', 9 | requireConfigFile: false, 10 | }, 11 | extends: ['@nuxtjs', 'plugin:nuxt/recommended', 'prettier'], 12 | plugins: [], 13 | // add your custom rules here 14 | rules: { 15 | 'max-len': [2, { code: 160, tabWidth: 4, ignoreUrls: true }], 16 | }, 17 | }; 18 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Created by .ignore support plugin (hsz.mobi) 2 | ### Node template 3 | # Logs 4 | /logs 5 | *.log 6 | npm-debug.log* 7 | yarn-debug.log* 8 | yarn-error.log* 9 | 10 | # Runtime data 11 | pids 12 | *.pid 13 | *.seed 14 | *.pid.lock 15 | 16 | # Directory for instrumented libs generated by jscoverage/JSCover 17 | lib-cov 18 | 19 | # Coverage directory used by tools like istanbul 20 | coverage 21 | 22 | # nyc test coverage 23 | .nyc_output 24 | 25 | # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) 26 | .grunt 27 | 28 | # Bower dependency directory (https://bower.io/) 29 | bower_components 30 | 31 | # node-waf configuration 32 | .lock-wscript 33 | 34 | # Compiled binary addons (https://nodejs.org/api/addons.html) 35 | build/Release 36 | 37 | # Dependency directories 38 | node_modules/ 39 | jspm_packages/ 40 | 41 | # TypeScript v1 declaration files 42 | typings/ 43 | 44 | # Optional npm cache directory 45 | .npm 46 | 47 | # Optional eslint cache 48 | .eslintcache 49 | 50 | # Optional REPL history 51 | .node_repl_history 52 | 53 | # Output of 'npm pack' 54 | *.tgz 55 | 56 | # Yarn Integrity file 57 | .yarn-integrity 58 | 59 | # dotenv environment variables file 60 | .env 61 | 62 | # parcel-bundler cache (https://parceljs.org/) 63 | .cache 64 | 65 | # next.js build output 66 | .next 67 | 68 | # nuxt.js build output 69 | .nuxt 70 | 71 | # Nuxt generate 72 | dist 73 | 74 | # vuepress build output 75 | .vuepress/dist 76 | 77 | # Serverless directories 78 | .serverless 79 | 80 | # IDE / Editor 81 | .idea 82 | 83 | # Service worker 84 | sw.* 85 | 86 | # macOS 87 | .DS_Store 88 | 89 | # Vim swap files 90 | *.swp 91 | .output/ 92 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "semi": true, 3 | "singleQuote": true, 4 | "printWidth": 200, 5 | "vueIndentScriptAndStyle": true 6 | } -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2022 Bhavesh Patel 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # vue3-datatable-document 2 | 3 | ## License 4 | 5 | vue3-datatable-document is open-sourced software licensed under the [MIT license](http://opensource.org/licenses/MIT). 6 | -------------------------------------------------------------------------------- /components/highlight.vue: -------------------------------------------------------------------------------- 1 | 6 | 17 | 18 | 23 | -------------------------------------------------------------------------------- /components/icon/icon-announcement.vue: -------------------------------------------------------------------------------- 1 | 9 | -------------------------------------------------------------------------------- /components/icon/icon-arrow-sub.vue: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /components/icon/icon-bullet.vue: -------------------------------------------------------------------------------- 1 | 13 | -------------------------------------------------------------------------------- /components/icon/icon-code.vue: -------------------------------------------------------------------------------- 1 | 18 | -------------------------------------------------------------------------------- /components/icon/icon-file-text.vue: -------------------------------------------------------------------------------- 1 | 10 | -------------------------------------------------------------------------------- /components/icon/icon-file.vue: -------------------------------------------------------------------------------- 1 | 7 | -------------------------------------------------------------------------------- /components/icon/icon-github.vue: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /components/icon/icon-grid-action.vue: -------------------------------------------------------------------------------- 1 | 7 | -------------------------------------------------------------------------------- /components/icon/icon-grid-advanced.vue: -------------------------------------------------------------------------------- 1 | 24 | -------------------------------------------------------------------------------- /components/icon/icon-grid-checkbox.vue: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /components/icon/icon-grid-click.vue: -------------------------------------------------------------------------------- 1 | 12 | -------------------------------------------------------------------------------- /components/icon/icon-grid-clone.vue: -------------------------------------------------------------------------------- 1 | 11 | -------------------------------------------------------------------------------- /components/icon/icon-grid-column.vue: -------------------------------------------------------------------------------- 1 | 15 | -------------------------------------------------------------------------------- /components/icon/icon-grid-custom.vue: -------------------------------------------------------------------------------- 1 | 16 | -------------------------------------------------------------------------------- /components/icon/icon-grid-export.vue: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /components/icon/icon-grid-filter.vue: -------------------------------------------------------------------------------- 1 | 11 | -------------------------------------------------------------------------------- /components/icon/icon-grid-loader.vue: -------------------------------------------------------------------------------- 1 | 12 | -------------------------------------------------------------------------------- /components/icon/icon-grid-method.vue: -------------------------------------------------------------------------------- 1 | 10 | -------------------------------------------------------------------------------- /components/icon/icon-grid-pagination.vue: -------------------------------------------------------------------------------- 1 | 10 | -------------------------------------------------------------------------------- /components/icon/icon-grid-search.vue: -------------------------------------------------------------------------------- 1 | 11 | -------------------------------------------------------------------------------- /components/icon/icon-grid-skin.vue: -------------------------------------------------------------------------------- 1 | 10 | -------------------------------------------------------------------------------- /components/icon/icon-grid-slot.vue: -------------------------------------------------------------------------------- 1 | 9 | -------------------------------------------------------------------------------- /components/icon/icon-grid-sort.vue: -------------------------------------------------------------------------------- 1 | 12 | -------------------------------------------------------------------------------- /components/icon/icon-grid-static.vue: -------------------------------------------------------------------------------- 1 | 10 | -------------------------------------------------------------------------------- /components/icon/icon-grid-sticky.vue: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /components/icon/icon-grid.vue: -------------------------------------------------------------------------------- 1 | 15 | -------------------------------------------------------------------------------- /components/icon/icon-printer.vue: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /components/layout/layout-footer.vue: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /components/layout/layout-header.vue: -------------------------------------------------------------------------------- 1 | 47 | 51 | -------------------------------------------------------------------------------- /layouts/default.vue: -------------------------------------------------------------------------------- 1 | 25 | 32 | -------------------------------------------------------------------------------- /nuxt.config.ts: -------------------------------------------------------------------------------- 1 | // https://v3.nuxtjs.org/api/configuration/nuxt.config 2 | export default defineNuxtConfig({ 3 | app: { 4 | head: { 5 | title: 'Vue3-Datatable', 6 | htmlAttrs: { 7 | lang: 'en', 8 | }, 9 | meta: [ 10 | { charset: 'utf-8' }, 11 | { 12 | name: 'viewport', 13 | content: 'width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no', 14 | }, 15 | { hid: 'description', name: 'description', content: '' }, 16 | { name: 'format-detection', content: 'telephone=no' }, 17 | ], 18 | link: [ 19 | // { rel: "icon", type: "image/x-icon", href: "/favicon.png" }, 20 | { 21 | rel: 'stylesheet', 22 | href: 'https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap', 23 | }, 24 | ], 25 | }, 26 | }, 27 | nitro: { 28 | routeRules: { 29 | '/api/user': { cors: true }, 30 | '/api/**': { cors: true }, 31 | }, 32 | }, 33 | css: ['@/assets/css/tailwind.css'], 34 | 35 | modules: ['@pinia/nuxt'], 36 | 37 | runtimeConfig: { 38 | public: { 39 | SITE_URL: process.env.NUXT_SITE_URL, 40 | }, 41 | }, 42 | 43 | postcss: { 44 | plugins: { 45 | tailwindcss: {}, 46 | autoprefixer: {}, 47 | }, 48 | }, 49 | }); 50 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "private": true, 3 | "scripts": { 4 | "build": "nuxt build", 5 | "dev": "nuxt dev", 6 | "generate": "nuxt generate", 7 | "preview": "nuxt preview", 8 | "postinstall": "nuxt prepare" 9 | }, 10 | "devDependencies": { 11 | "autoprefixer": "^10.4.13", 12 | "nuxt": "^3.0.0-rc.13", 13 | "postcss": "^8.4.19", 14 | "tailwindcss": "^3.2.4" 15 | }, 16 | "dependencies": { 17 | "@bhplugin/vue3-datatable": "^2.0.2", 18 | "@pinia/nuxt": "^0.4.3", 19 | "apexcharts": "^3.36.3", 20 | "highlight.js": "^11.6.0", 21 | "pinia": "^2.0.23", 22 | "vue3-apexcharts": "^1.4.1" 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /pages/changelog.vue: -------------------------------------------------------------------------------- 1 | 20 | -------------------------------------------------------------------------------- /pages/static-mode.vue: -------------------------------------------------------------------------------- 1 | 14 | 55 | 60 | -------------------------------------------------------------------------------- /public/assets/images/flags/AE.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | AE 5 | Created with sketchtool. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /public/assets/images/flags/AM.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | AM 5 | Created with sketchtool. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /public/assets/images/flags/AR.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | AR 5 | Created with sketchtool. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /public/assets/images/flags/AT.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | AT 5 | Created with sketchtool. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /public/assets/images/flags/AX.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | AX 5 | Created with sketchtool. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /public/assets/images/flags/BD.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | BD 5 | Created with sketchtool. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /public/assets/images/flags/BE.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | BE 5 | Created with sketchtool. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /public/assets/images/flags/BF.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | BF 5 | Created with sketchtool. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /public/assets/images/flags/BG.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | BG 5 | Created with sketchtool. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /public/assets/images/flags/BH.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | BH 5 | Created with sketchtool. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /public/assets/images/flags/BJ.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | BJ 5 | Created with sketchtool. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /public/assets/images/flags/BN.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | BN 5 | Created with sketchtool. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /public/assets/images/flags/BO.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | BO 5 | Created with sketchtool. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /public/assets/images/flags/BS.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | BS 5 | Created with sketchtool. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /public/assets/images/flags/BT.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | BT 5 | Created with sketchtool. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /public/assets/images/flags/BV.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | BV 5 | Created with sketchtool. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /public/assets/images/flags/BW.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | BW 5 | Created with sketchtool. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /public/assets/images/flags/CH.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | CH 5 | Created with sketchtool. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /public/assets/images/flags/CI.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | CI 5 | Created with sketchtool. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /public/assets/images/flags/CL.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | CL 5 | Created with sketchtool. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /public/assets/images/flags/CO.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | CO 5 | Created with sketchtool. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /public/assets/images/flags/CR.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | CR 5 | Created with sketchtool. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /public/assets/images/flags/CZ.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | CZ 5 | Created with sketchtool. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /public/assets/images/flags/DE.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | DE 5 | Created with sketchtool. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /public/assets/images/flags/DK.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | DK 5 | Created with sketchtool. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /public/assets/images/flags/EE.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | EE 5 | Created with sketchtool. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /public/assets/images/flags/EH.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /public/assets/images/flags/FI.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | FI 5 | Created with sketchtool. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /public/assets/images/flags/FO.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | FO 5 | Created with sketchtool. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /public/assets/images/flags/FR.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | FR 5 | Created with sketchtool. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /public/assets/images/flags/GA.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | GA 5 | Created with sketchtool. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /public/assets/images/flags/GB-ENG.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | GB-ENG 5 | Created with sketchtool. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /public/assets/images/flags/GB-SCT.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | GB-SCT 5 | Created with sketchtool. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /public/assets/images/flags/GB-ZET.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | GB-ZET 5 | Created with sketchtool. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /public/assets/images/flags/GE.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | GE 5 | Created with sketchtool. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /public/assets/images/flags/GF.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | GF 5 | Created with sketchtool. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /public/assets/images/flags/GG.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | GG 5 | Created with sketchtool. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /public/assets/images/flags/GM.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | GM 5 | Created with sketchtool. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /public/assets/images/flags/GN.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | GN 5 | Created with sketchtool. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /public/assets/images/flags/GR.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | GR 5 | Created with sketchtool. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /public/assets/images/flags/HU.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | HU 5 | Created with sketchtool. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /public/assets/images/flags/ID.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | ID 5 | Created with sketchtool. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /public/assets/images/flags/IE.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | IE 5 | Created with sketchtool. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /public/assets/images/flags/IL.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | IL 5 | Created with sketchtool. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /public/assets/images/flags/IS.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | IS 5 | Created with sketchtool. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /public/assets/images/flags/IT.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | IT 5 | Created with sketchtool. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /public/assets/images/flags/JP.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | JP 5 | Created with sketchtool. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /public/assets/images/flags/KW.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | KW 5 | Created with sketchtool. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /public/assets/images/flags/LA.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | LA 5 | Created with sketchtool. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /public/assets/images/flags/LC.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | LC 5 | Created with sketchtool. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /public/assets/images/flags/LI.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | LI 5 | Created with sketchtool. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /public/assets/images/flags/LT.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | LT 5 | Created with sketchtool. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /public/assets/images/flags/LU.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | LU 5 | Created with sketchtool. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /public/assets/images/flags/LV.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | LV 5 | Created with sketchtool. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /public/assets/images/flags/MA.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MA 5 | Created with sketchtool. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /public/assets/images/flags/MC.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MC 5 | Created with sketchtool. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /public/assets/images/flags/MF.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MF 5 | Created with sketchtool. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /public/assets/images/flags/MG.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MG 5 | Created with sketchtool. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /public/assets/images/flags/ML.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | ML 5 | Created with sketchtool. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /public/assets/images/flags/MT.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MT 5 | Created with sketchtool. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /public/assets/images/flags/MV.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MV 5 | Created with sketchtool. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /public/assets/images/flags/MW.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MW 5 | Created with sketchtool. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /public/assets/images/flags/NE.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | NE 5 | Created with sketchtool. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /public/assets/images/flags/NG.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | NG 5 | Created with sketchtool. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /public/assets/images/flags/NI.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | NI 5 | Created with sketchtool. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /public/assets/images/flags/NL.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | NL 5 | Created with sketchtool. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /public/assets/images/flags/NO.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | NO 5 | Created with sketchtool. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /public/assets/images/flags/NR.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | NR 5 | Created with sketchtool. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /public/assets/images/flags/OM.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | OM 5 | Created with sketchtool. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /public/assets/images/flags/PE.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | PE 5 | Created with sketchtool. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /public/assets/images/flags/PL.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | PL 5 | Created with sketchtool. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /public/assets/images/flags/PR.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | PR 5 | Created with sketchtool. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /public/assets/images/flags/PS.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | PS 5 | Created with sketchtool. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /public/assets/images/flags/PW.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | PW 5 | Created with sketchtool. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /public/assets/images/flags/QA.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | QA 5 | Created with sketchtool. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /public/assets/images/flags/RE.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | RE 5 | Created with sketchtool. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /public/assets/images/flags/RH.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | TH 5 | Created with sketchtool. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /public/assets/images/flags/RO.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | RO 5 | Created with sketchtool. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /public/assets/images/flags/RU.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | RU 5 | Created with sketchtool. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /public/assets/images/flags/SD.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | SD 5 | Created with sketchtool. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /public/assets/images/flags/SE.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | SE 5 | Created with sketchtool. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /public/assets/images/flags/SI.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | SI 5 | Created with sketchtool. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /public/assets/images/flags/SJ.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | SJ 5 | Created with sketchtool. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /public/assets/images/flags/SL.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | SL 5 | Created with sketchtool. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /public/assets/images/flags/SO.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | SO 5 | Created with sketchtool. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /public/assets/images/flags/SV.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | SV 5 | Created with sketchtool. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /public/assets/images/flags/TD.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | TD 5 | Created with sketchtool. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /public/assets/images/flags/TH.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/assets/images/flags/TN.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | TN 5 | Created with sketchtool. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /public/assets/images/flags/TO.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | TO 5 | Created with sketchtool. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /public/assets/images/flags/TR.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | TR 5 | Created with sketchtool. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /public/assets/images/flags/TT.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | TT 5 | Created with sketchtool. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /public/assets/images/flags/TW.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | TW 5 | Created with sketchtool. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /public/assets/images/flags/UK.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | UA 5 | Created with sketchtool. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /public/assets/images/flags/VN.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | VN 5 | Created with sketchtool. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /public/assets/images/flags/WF.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | WF 5 | Created with sketchtool. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /public/assets/images/flags/YE.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | YE 5 | Created with sketchtool. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /public/assets/images/profile/profile-1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaveshpatel200/vue3-datatable-document/92008c2553ace91a21156e6ae7c4c0fd867a7e0e/public/assets/images/profile/profile-1.jpeg -------------------------------------------------------------------------------- /public/assets/images/profile/profile-10.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaveshpatel200/vue3-datatable-document/92008c2553ace91a21156e6ae7c4c0fd867a7e0e/public/assets/images/profile/profile-10.jpeg -------------------------------------------------------------------------------- /public/assets/images/profile/profile-11.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaveshpatel200/vue3-datatable-document/92008c2553ace91a21156e6ae7c4c0fd867a7e0e/public/assets/images/profile/profile-11.jpeg -------------------------------------------------------------------------------- /public/assets/images/profile/profile-12.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaveshpatel200/vue3-datatable-document/92008c2553ace91a21156e6ae7c4c0fd867a7e0e/public/assets/images/profile/profile-12.jpeg -------------------------------------------------------------------------------- /public/assets/images/profile/profile-13.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaveshpatel200/vue3-datatable-document/92008c2553ace91a21156e6ae7c4c0fd867a7e0e/public/assets/images/profile/profile-13.jpeg -------------------------------------------------------------------------------- /public/assets/images/profile/profile-14.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaveshpatel200/vue3-datatable-document/92008c2553ace91a21156e6ae7c4c0fd867a7e0e/public/assets/images/profile/profile-14.jpeg -------------------------------------------------------------------------------- /public/assets/images/profile/profile-15.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaveshpatel200/vue3-datatable-document/92008c2553ace91a21156e6ae7c4c0fd867a7e0e/public/assets/images/profile/profile-15.jpeg -------------------------------------------------------------------------------- /public/assets/images/profile/profile-16.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaveshpatel200/vue3-datatable-document/92008c2553ace91a21156e6ae7c4c0fd867a7e0e/public/assets/images/profile/profile-16.jpeg -------------------------------------------------------------------------------- /public/assets/images/profile/profile-17.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaveshpatel200/vue3-datatable-document/92008c2553ace91a21156e6ae7c4c0fd867a7e0e/public/assets/images/profile/profile-17.jpeg -------------------------------------------------------------------------------- /public/assets/images/profile/profile-18.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaveshpatel200/vue3-datatable-document/92008c2553ace91a21156e6ae7c4c0fd867a7e0e/public/assets/images/profile/profile-18.jpeg -------------------------------------------------------------------------------- /public/assets/images/profile/profile-19.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaveshpatel200/vue3-datatable-document/92008c2553ace91a21156e6ae7c4c0fd867a7e0e/public/assets/images/profile/profile-19.jpeg -------------------------------------------------------------------------------- /public/assets/images/profile/profile-2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaveshpatel200/vue3-datatable-document/92008c2553ace91a21156e6ae7c4c0fd867a7e0e/public/assets/images/profile/profile-2.jpeg -------------------------------------------------------------------------------- /public/assets/images/profile/profile-20.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaveshpatel200/vue3-datatable-document/92008c2553ace91a21156e6ae7c4c0fd867a7e0e/public/assets/images/profile/profile-20.jpeg -------------------------------------------------------------------------------- /public/assets/images/profile/profile-21.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaveshpatel200/vue3-datatable-document/92008c2553ace91a21156e6ae7c4c0fd867a7e0e/public/assets/images/profile/profile-21.jpeg -------------------------------------------------------------------------------- /public/assets/images/profile/profile-22.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaveshpatel200/vue3-datatable-document/92008c2553ace91a21156e6ae7c4c0fd867a7e0e/public/assets/images/profile/profile-22.jpeg -------------------------------------------------------------------------------- /public/assets/images/profile/profile-23.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaveshpatel200/vue3-datatable-document/92008c2553ace91a21156e6ae7c4c0fd867a7e0e/public/assets/images/profile/profile-23.jpeg -------------------------------------------------------------------------------- /public/assets/images/profile/profile-24.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaveshpatel200/vue3-datatable-document/92008c2553ace91a21156e6ae7c4c0fd867a7e0e/public/assets/images/profile/profile-24.jpeg -------------------------------------------------------------------------------- /public/assets/images/profile/profile-25.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaveshpatel200/vue3-datatable-document/92008c2553ace91a21156e6ae7c4c0fd867a7e0e/public/assets/images/profile/profile-25.jpeg -------------------------------------------------------------------------------- /public/assets/images/profile/profile-26.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaveshpatel200/vue3-datatable-document/92008c2553ace91a21156e6ae7c4c0fd867a7e0e/public/assets/images/profile/profile-26.jpeg -------------------------------------------------------------------------------- /public/assets/images/profile/profile-27.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaveshpatel200/vue3-datatable-document/92008c2553ace91a21156e6ae7c4c0fd867a7e0e/public/assets/images/profile/profile-27.jpeg -------------------------------------------------------------------------------- /public/assets/images/profile/profile-28.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaveshpatel200/vue3-datatable-document/92008c2553ace91a21156e6ae7c4c0fd867a7e0e/public/assets/images/profile/profile-28.jpeg -------------------------------------------------------------------------------- /public/assets/images/profile/profile-29.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaveshpatel200/vue3-datatable-document/92008c2553ace91a21156e6ae7c4c0fd867a7e0e/public/assets/images/profile/profile-29.jpeg -------------------------------------------------------------------------------- /public/assets/images/profile/profile-3.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaveshpatel200/vue3-datatable-document/92008c2553ace91a21156e6ae7c4c0fd867a7e0e/public/assets/images/profile/profile-3.jpeg -------------------------------------------------------------------------------- /public/assets/images/profile/profile-30.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaveshpatel200/vue3-datatable-document/92008c2553ace91a21156e6ae7c4c0fd867a7e0e/public/assets/images/profile/profile-30.jpeg -------------------------------------------------------------------------------- /public/assets/images/profile/profile-31.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaveshpatel200/vue3-datatable-document/92008c2553ace91a21156e6ae7c4c0fd867a7e0e/public/assets/images/profile/profile-31.jpeg -------------------------------------------------------------------------------- /public/assets/images/profile/profile-32.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaveshpatel200/vue3-datatable-document/92008c2553ace91a21156e6ae7c4c0fd867a7e0e/public/assets/images/profile/profile-32.jpeg -------------------------------------------------------------------------------- /public/assets/images/profile/profile-4.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaveshpatel200/vue3-datatable-document/92008c2553ace91a21156e6ae7c4c0fd867a7e0e/public/assets/images/profile/profile-4.jpeg -------------------------------------------------------------------------------- /public/assets/images/profile/profile-5.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaveshpatel200/vue3-datatable-document/92008c2553ace91a21156e6ae7c4c0fd867a7e0e/public/assets/images/profile/profile-5.jpeg -------------------------------------------------------------------------------- /public/assets/images/profile/profile-6.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaveshpatel200/vue3-datatable-document/92008c2553ace91a21156e6ae7c4c0fd867a7e0e/public/assets/images/profile/profile-6.jpeg -------------------------------------------------------------------------------- /public/assets/images/profile/profile-7.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaveshpatel200/vue3-datatable-document/92008c2553ace91a21156e6ae7c4c0fd867a7e0e/public/assets/images/profile/profile-7.jpeg -------------------------------------------------------------------------------- /public/assets/images/profile/profile-8.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaveshpatel200/vue3-datatable-document/92008c2553ace91a21156e6ae7c4c0fd867a7e0e/public/assets/images/profile/profile-8.jpeg -------------------------------------------------------------------------------- /public/assets/images/profile/profile-9.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaveshpatel200/vue3-datatable-document/92008c2553ace91a21156e6ae7c4c0fd867a7e0e/public/assets/images/profile/profile-9.jpeg -------------------------------------------------------------------------------- /stores/index.ts: -------------------------------------------------------------------------------- 1 | import { defineStore } from 'pinia'; 2 | 3 | export const useAppStore = defineStore('app', { 4 | state: () => ({ 5 | sidebar: false, 6 | }), 7 | actions: { 8 | toggleSidebar(state: boolean = false) { 9 | this.sidebar = !this.sidebar; 10 | }, 11 | }, 12 | getters: {}, 13 | }); -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- 1 | /** @type {import('tailwindcss').Config} */ 2 | module.exports = { 3 | content: ['./components/**/*.{js,vue,ts}', './layouts/**/*.vue', './pages/**/*.vue', './plugins/**/*.{js,ts}', './nuxt.config.{js,ts}', './app.vue'], 4 | theme: { 5 | fontFamily: { 6 | poppins: ['Poppins', 'sans-serif'], 7 | }, 8 | extend: { 9 | colors: { 10 | bgdark: '#1c232f', 11 | gray: { 12 | DEFAULT: '#f4f4f4', 13 | light: '#f8f8f8', 14 | }, 15 | primary: { 16 | DEFAULT: '#5367ff', 17 | light: '#eef0ff', 18 | }, 19 | secondary: { 20 | DEFAULT: '#0dcaf0', 21 | light: '#e7fafe', 22 | }, 23 | success: { 24 | DEFAULT: '#00d09c', 25 | light: '#e6fbf6', 26 | }, 27 | danger: { 28 | DEFAULT: '#ff585d', 29 | light: '#ffeeef', 30 | }, 31 | warning: { 32 | DEFAULT: '#ffb61b', 33 | light: '#fff3cd', 34 | }, 35 | info: { 36 | DEFAULT: '#1da1f2', 37 | light: '#e8f6fe', 38 | }, 39 | }, 40 | }, 41 | }, 42 | plugins: [], 43 | }; 44 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | // https://v3.nuxtjs.org/concepts/typescript 3 | "extends": "./.nuxt/tsconfig.json" 4 | } 5 | --------------------------------------------------------------------------------