├── .github └── workflows │ └── codeql-analysis.yml ├── .gitignore ├── README.md ├── SECURITY.md ├── babel.config.js ├── package.json ├── public ├── favicon.ico └── index.html └── src ├── App.vue ├── assets └── logo.png ├── components ├── Footer.vue ├── HelloWorld.vue └── List.vue ├── main.js ├── router └── index.js ├── util └── config.js └── views ├── About.vue ├── Home.vue └── Surah.vue /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiqryq/quran-digital/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiqryq/quran-digital/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiqryq/quran-digital/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiqryq/quran-digital/HEAD/SECURITY.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiqryq/quran-digital/HEAD/babel.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiqryq/quran-digital/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiqryq/quran-digital/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiqryq/quran-digital/HEAD/public/index.html -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiqryq/quran-digital/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiqryq/quran-digital/HEAD/src/assets/logo.png -------------------------------------------------------------------------------- /src/components/Footer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiqryq/quran-digital/HEAD/src/components/Footer.vue -------------------------------------------------------------------------------- /src/components/HelloWorld.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiqryq/quran-digital/HEAD/src/components/HelloWorld.vue -------------------------------------------------------------------------------- /src/components/List.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiqryq/quran-digital/HEAD/src/components/List.vue -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiqryq/quran-digital/HEAD/src/main.js -------------------------------------------------------------------------------- /src/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiqryq/quran-digital/HEAD/src/router/index.js -------------------------------------------------------------------------------- /src/util/config.js: -------------------------------------------------------------------------------- 1 | export default { 2 | baseUrl: "https://api.quran.sutanlab.id", 3 | }; 4 | -------------------------------------------------------------------------------- /src/views/About.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiqryq/quran-digital/HEAD/src/views/About.vue -------------------------------------------------------------------------------- /src/views/Home.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiqryq/quran-digital/HEAD/src/views/Home.vue -------------------------------------------------------------------------------- /src/views/Surah.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiqryq/quran-digital/HEAD/src/views/Surah.vue --------------------------------------------------------------------------------