├── .babelrc ├── .browserslistrc ├── .editorconfig ├── .eslintrc.js ├── .github └── workflows │ └── codeql-analysis.yml ├── .gitignore ├── .prettierrc ├── .snyk ├── Dockerfile ├── LICENSE ├── Makefile ├── Procfile ├── README.md ├── app.html ├── assets ├── bluestacks_logo.png ├── bmc-button-red.png ├── kofi-button-blue.png ├── ldplayer_logo.png └── scss │ ├── _aplayer.scss │ ├── _grid.scss │ ├── _icons.scss │ ├── _includes.scss │ ├── _mixins.scss │ ├── _modal.scss │ ├── _tooltip.scss │ ├── _variables.scss │ └── epicsevendb.scss ├── components ├── ads │ ├── content.vue │ └── horizontal.vue ├── artifact │ ├── artwork.vue │ ├── header.vue │ ├── index.js │ ├── lore.vue │ ├── skill.vue │ └── stats.vue ├── artifacts │ ├── ListFilters.vue │ └── ListItem.vue ├── general │ ├── GlobalError.vue │ ├── ListFilters.vue │ └── LoadingMessage.vue ├── guidesntools │ └── List.vue ├── hero │ ├── artwork.vue │ ├── awakening.vue │ ├── camping.vue │ ├── exclusiveEquipment.vue │ ├── header.vue │ ├── imprint.vue │ ├── index.js │ ├── lore.vue │ ├── profile.vue │ ├── profileExtended.vue │ ├── relations.vue │ ├── skills.vue │ ├── specialtyChange.vue │ ├── specialtySkill.vue │ ├── stats.vue │ ├── statsTable.vue │ └── voices.vue ├── heroes │ ├── ListFilters.vue │ └── ListItem.vue ├── items │ └── ItemPopover.vue ├── layout │ ├── LanguageSelector.vue │ ├── NavBar.vue │ └── SectionLinks.vue ├── ranking │ ├── charts │ │ ├── attribute.vue │ │ ├── index.js │ │ ├── rarity.vue │ │ ├── role.vue │ │ └── usage.vue │ ├── header.vue │ ├── index.js │ └── statistics.vue └── search │ ├── ResultsList.vue │ └── SearchWidget.vue ├── jest.config.js ├── jsconfig.json ├── lang ├── config.js ├── de-DE.js ├── en-US.js ├── es-AR.js ├── fr-FR.js ├── ja-JP.js ├── ko-KR.js ├── pt-BR.js ├── th-TH.js ├── zh-CN.js └── zh-TW.js ├── layouts ├── default.vue └── error.vue ├── middleware └── README.md ├── nuxt.config.js ├── package.json ├── pages ├── about │ └── index.vue ├── artifact │ └── _id │ │ └── index.vue ├── artifacts │ └── index.vue ├── changelog │ └── index.vue ├── creators │ └── index.vue ├── hero │ └── _id │ │ └── index.vue ├── heroes │ └── index.vue ├── index.vue ├── items │ └── index.vue ├── privacy-policy │ └── index.vue └── ranking │ └── index.vue ├── plugins ├── aPlayer.js ├── axios.js ├── jsModal.js ├── lazyLoad.js ├── routerAfterEach.js ├── vTooltip.js └── vueFilters.js ├── server └── index.js ├── settings.json ├── static ├── ads.txt ├── built-with-nuxt-white.svg ├── favico.ico ├── favicon.ico ├── fonts │ ├── notosans-regular-webfont.woff │ └── notosans-regular-webfont.woff2 ├── googleb589bb0ea9571ecf.html ├── robots.txt └── sitemap.xml ├── store ├── artifact.js ├── buffs.js ├── creator.js ├── hero.js ├── index.js ├── item.js ├── latest.js ├── privacy.js └── ranking.js ├── test └── Logo.xspec.js └── util ├── Constants.js ├── Directives.js ├── Utils.js ├── vueFilters.js └── vueMixins.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelDDL/e7db-ui/HEAD/.babelrc -------------------------------------------------------------------------------- /.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelDDL/e7db-ui/HEAD/.browserslistrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelDDL/e7db-ui/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelDDL/e7db-ui/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelDDL/e7db-ui/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelDDL/e7db-ui/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelDDL/e7db-ui/HEAD/.prettierrc -------------------------------------------------------------------------------- /.snyk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelDDL/e7db-ui/HEAD/.snyk -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelDDL/e7db-ui/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelDDL/e7db-ui/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelDDL/e7db-ui/HEAD/Makefile -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelDDL/e7db-ui/HEAD/Procfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelDDL/e7db-ui/HEAD/README.md -------------------------------------------------------------------------------- /app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelDDL/e7db-ui/HEAD/app.html -------------------------------------------------------------------------------- /assets/bluestacks_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelDDL/e7db-ui/HEAD/assets/bluestacks_logo.png -------------------------------------------------------------------------------- /assets/bmc-button-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelDDL/e7db-ui/HEAD/assets/bmc-button-red.png -------------------------------------------------------------------------------- /assets/kofi-button-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelDDL/e7db-ui/HEAD/assets/kofi-button-blue.png -------------------------------------------------------------------------------- /assets/ldplayer_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelDDL/e7db-ui/HEAD/assets/ldplayer_logo.png -------------------------------------------------------------------------------- /assets/scss/_aplayer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelDDL/e7db-ui/HEAD/assets/scss/_aplayer.scss -------------------------------------------------------------------------------- /assets/scss/_grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelDDL/e7db-ui/HEAD/assets/scss/_grid.scss -------------------------------------------------------------------------------- /assets/scss/_icons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelDDL/e7db-ui/HEAD/assets/scss/_icons.scss -------------------------------------------------------------------------------- /assets/scss/_includes.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelDDL/e7db-ui/HEAD/assets/scss/_includes.scss -------------------------------------------------------------------------------- /assets/scss/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelDDL/e7db-ui/HEAD/assets/scss/_mixins.scss -------------------------------------------------------------------------------- /assets/scss/_modal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelDDL/e7db-ui/HEAD/assets/scss/_modal.scss -------------------------------------------------------------------------------- /assets/scss/_tooltip.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelDDL/e7db-ui/HEAD/assets/scss/_tooltip.scss -------------------------------------------------------------------------------- /assets/scss/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelDDL/e7db-ui/HEAD/assets/scss/_variables.scss -------------------------------------------------------------------------------- /assets/scss/epicsevendb.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelDDL/e7db-ui/HEAD/assets/scss/epicsevendb.scss -------------------------------------------------------------------------------- /components/ads/content.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelDDL/e7db-ui/HEAD/components/ads/content.vue -------------------------------------------------------------------------------- /components/ads/horizontal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelDDL/e7db-ui/HEAD/components/ads/horizontal.vue -------------------------------------------------------------------------------- /components/artifact/artwork.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelDDL/e7db-ui/HEAD/components/artifact/artwork.vue -------------------------------------------------------------------------------- /components/artifact/header.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelDDL/e7db-ui/HEAD/components/artifact/header.vue -------------------------------------------------------------------------------- /components/artifact/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelDDL/e7db-ui/HEAD/components/artifact/index.js -------------------------------------------------------------------------------- /components/artifact/lore.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelDDL/e7db-ui/HEAD/components/artifact/lore.vue -------------------------------------------------------------------------------- /components/artifact/skill.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelDDL/e7db-ui/HEAD/components/artifact/skill.vue -------------------------------------------------------------------------------- /components/artifact/stats.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelDDL/e7db-ui/HEAD/components/artifact/stats.vue -------------------------------------------------------------------------------- /components/artifacts/ListFilters.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelDDL/e7db-ui/HEAD/components/artifacts/ListFilters.vue -------------------------------------------------------------------------------- /components/artifacts/ListItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelDDL/e7db-ui/HEAD/components/artifacts/ListItem.vue -------------------------------------------------------------------------------- /components/general/GlobalError.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelDDL/e7db-ui/HEAD/components/general/GlobalError.vue -------------------------------------------------------------------------------- /components/general/ListFilters.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelDDL/e7db-ui/HEAD/components/general/ListFilters.vue -------------------------------------------------------------------------------- /components/general/LoadingMessage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelDDL/e7db-ui/HEAD/components/general/LoadingMessage.vue -------------------------------------------------------------------------------- /components/guidesntools/List.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelDDL/e7db-ui/HEAD/components/guidesntools/List.vue -------------------------------------------------------------------------------- /components/hero/artwork.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelDDL/e7db-ui/HEAD/components/hero/artwork.vue -------------------------------------------------------------------------------- /components/hero/awakening.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelDDL/e7db-ui/HEAD/components/hero/awakening.vue -------------------------------------------------------------------------------- /components/hero/camping.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelDDL/e7db-ui/HEAD/components/hero/camping.vue -------------------------------------------------------------------------------- /components/hero/exclusiveEquipment.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelDDL/e7db-ui/HEAD/components/hero/exclusiveEquipment.vue -------------------------------------------------------------------------------- /components/hero/header.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelDDL/e7db-ui/HEAD/components/hero/header.vue -------------------------------------------------------------------------------- /components/hero/imprint.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelDDL/e7db-ui/HEAD/components/hero/imprint.vue -------------------------------------------------------------------------------- /components/hero/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelDDL/e7db-ui/HEAD/components/hero/index.js -------------------------------------------------------------------------------- /components/hero/lore.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelDDL/e7db-ui/HEAD/components/hero/lore.vue -------------------------------------------------------------------------------- /components/hero/profile.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelDDL/e7db-ui/HEAD/components/hero/profile.vue -------------------------------------------------------------------------------- /components/hero/profileExtended.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelDDL/e7db-ui/HEAD/components/hero/profileExtended.vue -------------------------------------------------------------------------------- /components/hero/relations.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelDDL/e7db-ui/HEAD/components/hero/relations.vue -------------------------------------------------------------------------------- /components/hero/skills.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelDDL/e7db-ui/HEAD/components/hero/skills.vue -------------------------------------------------------------------------------- /components/hero/specialtyChange.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelDDL/e7db-ui/HEAD/components/hero/specialtyChange.vue -------------------------------------------------------------------------------- /components/hero/specialtySkill.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelDDL/e7db-ui/HEAD/components/hero/specialtySkill.vue -------------------------------------------------------------------------------- /components/hero/stats.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelDDL/e7db-ui/HEAD/components/hero/stats.vue -------------------------------------------------------------------------------- /components/hero/statsTable.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelDDL/e7db-ui/HEAD/components/hero/statsTable.vue -------------------------------------------------------------------------------- /components/hero/voices.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelDDL/e7db-ui/HEAD/components/hero/voices.vue -------------------------------------------------------------------------------- /components/heroes/ListFilters.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelDDL/e7db-ui/HEAD/components/heroes/ListFilters.vue -------------------------------------------------------------------------------- /components/heroes/ListItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelDDL/e7db-ui/HEAD/components/heroes/ListItem.vue -------------------------------------------------------------------------------- /components/items/ItemPopover.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelDDL/e7db-ui/HEAD/components/items/ItemPopover.vue -------------------------------------------------------------------------------- /components/layout/LanguageSelector.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelDDL/e7db-ui/HEAD/components/layout/LanguageSelector.vue -------------------------------------------------------------------------------- /components/layout/NavBar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelDDL/e7db-ui/HEAD/components/layout/NavBar.vue -------------------------------------------------------------------------------- /components/layout/SectionLinks.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelDDL/e7db-ui/HEAD/components/layout/SectionLinks.vue -------------------------------------------------------------------------------- /components/ranking/charts/attribute.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelDDL/e7db-ui/HEAD/components/ranking/charts/attribute.vue -------------------------------------------------------------------------------- /components/ranking/charts/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelDDL/e7db-ui/HEAD/components/ranking/charts/index.js -------------------------------------------------------------------------------- /components/ranking/charts/rarity.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelDDL/e7db-ui/HEAD/components/ranking/charts/rarity.vue -------------------------------------------------------------------------------- /components/ranking/charts/role.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelDDL/e7db-ui/HEAD/components/ranking/charts/role.vue -------------------------------------------------------------------------------- /components/ranking/charts/usage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelDDL/e7db-ui/HEAD/components/ranking/charts/usage.vue -------------------------------------------------------------------------------- /components/ranking/header.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelDDL/e7db-ui/HEAD/components/ranking/header.vue -------------------------------------------------------------------------------- /components/ranking/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelDDL/e7db-ui/HEAD/components/ranking/index.js -------------------------------------------------------------------------------- /components/ranking/statistics.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelDDL/e7db-ui/HEAD/components/ranking/statistics.vue -------------------------------------------------------------------------------- /components/search/ResultsList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelDDL/e7db-ui/HEAD/components/search/ResultsList.vue -------------------------------------------------------------------------------- /components/search/SearchWidget.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelDDL/e7db-ui/HEAD/components/search/SearchWidget.vue -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelDDL/e7db-ui/HEAD/jest.config.js -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelDDL/e7db-ui/HEAD/jsconfig.json -------------------------------------------------------------------------------- /lang/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelDDL/e7db-ui/HEAD/lang/config.js -------------------------------------------------------------------------------- /lang/de-DE.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelDDL/e7db-ui/HEAD/lang/de-DE.js -------------------------------------------------------------------------------- /lang/en-US.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelDDL/e7db-ui/HEAD/lang/en-US.js -------------------------------------------------------------------------------- /lang/es-AR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelDDL/e7db-ui/HEAD/lang/es-AR.js -------------------------------------------------------------------------------- /lang/fr-FR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelDDL/e7db-ui/HEAD/lang/fr-FR.js -------------------------------------------------------------------------------- /lang/ja-JP.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelDDL/e7db-ui/HEAD/lang/ja-JP.js -------------------------------------------------------------------------------- /lang/ko-KR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelDDL/e7db-ui/HEAD/lang/ko-KR.js -------------------------------------------------------------------------------- /lang/pt-BR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelDDL/e7db-ui/HEAD/lang/pt-BR.js -------------------------------------------------------------------------------- /lang/th-TH.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelDDL/e7db-ui/HEAD/lang/th-TH.js -------------------------------------------------------------------------------- /lang/zh-CN.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelDDL/e7db-ui/HEAD/lang/zh-CN.js -------------------------------------------------------------------------------- /lang/zh-TW.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelDDL/e7db-ui/HEAD/lang/zh-TW.js -------------------------------------------------------------------------------- /layouts/default.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelDDL/e7db-ui/HEAD/layouts/default.vue -------------------------------------------------------------------------------- /layouts/error.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelDDL/e7db-ui/HEAD/layouts/error.vue -------------------------------------------------------------------------------- /middleware/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelDDL/e7db-ui/HEAD/middleware/README.md -------------------------------------------------------------------------------- /nuxt.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelDDL/e7db-ui/HEAD/nuxt.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelDDL/e7db-ui/HEAD/package.json -------------------------------------------------------------------------------- /pages/about/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelDDL/e7db-ui/HEAD/pages/about/index.vue -------------------------------------------------------------------------------- /pages/artifact/_id/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelDDL/e7db-ui/HEAD/pages/artifact/_id/index.vue -------------------------------------------------------------------------------- /pages/artifacts/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelDDL/e7db-ui/HEAD/pages/artifacts/index.vue -------------------------------------------------------------------------------- /pages/changelog/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelDDL/e7db-ui/HEAD/pages/changelog/index.vue -------------------------------------------------------------------------------- /pages/creators/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelDDL/e7db-ui/HEAD/pages/creators/index.vue -------------------------------------------------------------------------------- /pages/hero/_id/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelDDL/e7db-ui/HEAD/pages/hero/_id/index.vue -------------------------------------------------------------------------------- /pages/heroes/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelDDL/e7db-ui/HEAD/pages/heroes/index.vue -------------------------------------------------------------------------------- /pages/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelDDL/e7db-ui/HEAD/pages/index.vue -------------------------------------------------------------------------------- /pages/items/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelDDL/e7db-ui/HEAD/pages/items/index.vue -------------------------------------------------------------------------------- /pages/privacy-policy/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelDDL/e7db-ui/HEAD/pages/privacy-policy/index.vue -------------------------------------------------------------------------------- /pages/ranking/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelDDL/e7db-ui/HEAD/pages/ranking/index.vue -------------------------------------------------------------------------------- /plugins/aPlayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelDDL/e7db-ui/HEAD/plugins/aPlayer.js -------------------------------------------------------------------------------- /plugins/axios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelDDL/e7db-ui/HEAD/plugins/axios.js -------------------------------------------------------------------------------- /plugins/jsModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelDDL/e7db-ui/HEAD/plugins/jsModal.js -------------------------------------------------------------------------------- /plugins/lazyLoad.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelDDL/e7db-ui/HEAD/plugins/lazyLoad.js -------------------------------------------------------------------------------- /plugins/routerAfterEach.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelDDL/e7db-ui/HEAD/plugins/routerAfterEach.js -------------------------------------------------------------------------------- /plugins/vTooltip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelDDL/e7db-ui/HEAD/plugins/vTooltip.js -------------------------------------------------------------------------------- /plugins/vueFilters.js: -------------------------------------------------------------------------------- 1 | import "~/util/vueFilters"; 2 | -------------------------------------------------------------------------------- /server/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelDDL/e7db-ui/HEAD/server/index.js -------------------------------------------------------------------------------- /settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelDDL/e7db-ui/HEAD/settings.json -------------------------------------------------------------------------------- /static/ads.txt: -------------------------------------------------------------------------------- 1 | google.com, pub-1913777996398713, DIRECT, f08c47fec0942fa0 -------------------------------------------------------------------------------- /static/built-with-nuxt-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelDDL/e7db-ui/HEAD/static/built-with-nuxt-white.svg -------------------------------------------------------------------------------- /static/favico.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelDDL/e7db-ui/HEAD/static/favico.ico -------------------------------------------------------------------------------- /static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelDDL/e7db-ui/HEAD/static/favicon.ico -------------------------------------------------------------------------------- /static/fonts/notosans-regular-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelDDL/e7db-ui/HEAD/static/fonts/notosans-regular-webfont.woff -------------------------------------------------------------------------------- /static/fonts/notosans-regular-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelDDL/e7db-ui/HEAD/static/fonts/notosans-regular-webfont.woff2 -------------------------------------------------------------------------------- /static/googleb589bb0ea9571ecf.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelDDL/e7db-ui/HEAD/static/googleb589bb0ea9571ecf.html -------------------------------------------------------------------------------- /static/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelDDL/e7db-ui/HEAD/static/robots.txt -------------------------------------------------------------------------------- /static/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelDDL/e7db-ui/HEAD/static/sitemap.xml -------------------------------------------------------------------------------- /store/artifact.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelDDL/e7db-ui/HEAD/store/artifact.js -------------------------------------------------------------------------------- /store/buffs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelDDL/e7db-ui/HEAD/store/buffs.js -------------------------------------------------------------------------------- /store/creator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelDDL/e7db-ui/HEAD/store/creator.js -------------------------------------------------------------------------------- /store/hero.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelDDL/e7db-ui/HEAD/store/hero.js -------------------------------------------------------------------------------- /store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelDDL/e7db-ui/HEAD/store/index.js -------------------------------------------------------------------------------- /store/item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelDDL/e7db-ui/HEAD/store/item.js -------------------------------------------------------------------------------- /store/latest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelDDL/e7db-ui/HEAD/store/latest.js -------------------------------------------------------------------------------- /store/privacy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelDDL/e7db-ui/HEAD/store/privacy.js -------------------------------------------------------------------------------- /store/ranking.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelDDL/e7db-ui/HEAD/store/ranking.js -------------------------------------------------------------------------------- /test/Logo.xspec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelDDL/e7db-ui/HEAD/test/Logo.xspec.js -------------------------------------------------------------------------------- /util/Constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelDDL/e7db-ui/HEAD/util/Constants.js -------------------------------------------------------------------------------- /util/Directives.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelDDL/e7db-ui/HEAD/util/Directives.js -------------------------------------------------------------------------------- /util/Utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelDDL/e7db-ui/HEAD/util/Utils.js -------------------------------------------------------------------------------- /util/vueFilters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelDDL/e7db-ui/HEAD/util/vueFilters.js -------------------------------------------------------------------------------- /util/vueMixins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelDDL/e7db-ui/HEAD/util/vueMixins.js --------------------------------------------------------------------------------