{"id":20778082,"url":"https://github.com/mustafadalga/loading-spinner","last_synced_at":"2026-05-24T13:33:18.382Z","repository":{"id":62825017,"uuid":"562505381","full_name":"mustafadalga/loading-spinner","owner":"mustafadalga","description":"A plugin developed with Vue 3 and vite.js.","archived":false,"fork":false,"pushed_at":"2022-11-07T08:10:48.000Z","size":114,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-05-11T14:49:38.721Z","etag":null,"topics":["css-spinners","loader","loader-component","loading","loading-component","spinner","spinners","vue","vue-spinner-component","vue-spinners"],"latest_commit_sha":null,"homepage":"https://www.npmjs.com/package/@mustafadalga/loading-spinner","language":"SCSS","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mustafadalga.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2022-11-06T15:13:30.000Z","updated_at":"2022-11-07T07:52:16.000Z","dependencies_parsed_at":"2022-11-07T11:31:08.819Z","dependency_job_id":null,"html_url":"https://github.com/mustafadalga/loading-spinner","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/mustafadalga/loading-spinner","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mustafadalga%2Floading-spinner","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mustafadalga%2Floading-spinner/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mustafadalga%2Floading-spinner/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mustafadalga%2Floading-spinner/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mustafadalga","download_url":"https://codeload.github.com/mustafadalga/loading-spinner/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mustafadalga%2Floading-spinner/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33436554,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-24T13:13:05.286Z","status":"ssl_error","status_checked_at":"2026-05-24T13:13:03.728Z","response_time":57,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["css-spinners","loader","loader-component","loading","loading-component","spinner","spinners","vue","vue-spinner-component","vue-spinners"],"created_at":"2024-11-17T13:19:04.950Z","updated_at":"2026-05-24T13:33:18.349Z","avatar_url":"https://github.com/mustafadalga.png","language":"SCSS","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Loading Component \n\n**A plugin developed with Vue 3 and vite.js.**\n\n\u003cp align=\"center\"\u003e\n\n[![vue version](https://img.shields.io/npm/v/@mustafadalga/loading-spinner.svg)](https://www.npmjs.com/package/@mustafadalga/loading-spinner)\n[![vue version](https://img.shields.io/badge/vue-3.2-brightgreen.svg)](https://www.npmjs.com/package/@mustafadalga/loading-spinner)\n\n\u003c/p\u003e\n\n\n## Installing\n\n### Package manager\n\nUsing npm:\n\n```bash\nnpm install @mustafadalga/loading-spinner\n```\n\nThen, import and register the component:\n\n\n## Global Registration\n\nmain.js\n```\nimport Loader from \"@mustafadalga/loading-spinner\";\nimport \"@mustafadalga/loading-spinner/style.css\"\n\napp.use(Loader);\n```\n\n## Local Registration\n\n* Composition Api\n\n```\n\u003cscript setup\u003e\nimport { Loader } from \"@mustafadalga/loading-spinner\";\nimport \"@mustafadalga/loading-spinner/style.css\";\n\u003c/script\u003e\n```\n\n* Options Api\n```\nimport { Loader } from \"@mustafadalga/loading-spinner\";\nimport \"@mustafadalga/loading-spinner/style.css\";\n\nexport default {\n  components: {\n    Loader\n  },\n}\n```\n\n\n## Usage\n* Example 1 \n```\n\u003cscript setup\u003e\nimport icon from './assets/icons/icon.svg'\n\u003c/script\u003e\n\n\u003ctemplate\u003e\n  \u003cmain\u003e\n    \u003cLoader :icon=\"icon\"/\u003e \n  \u003c/main\u003e\n\u003c/template\u003e\n```\n\n* Example 2\n\n```\n\u003cscript\u003e\nimport icon from './assets/icons/icon.svg'\n\nexport default {\n  data () {\n    return {\n      icon: icon\n    }\n  }\n}\n\u003c/script\u003e\n\n\u003ctemplate\u003e\n  \u003cmain\u003e\n    \u003cLoader :icon=\"icon\"/\u003e \n  \u003c/main\u003e\n\u003c/template\u003e\n```\n\n* Example 3\n\n```\n\u003cscript setup\u003e\nimport icon from './assets/icons/icon.svg'\n\u003c/script\u003e\n\n\u003ctemplate\u003e\n  \u003cmain\u003e\n    \u003cLoader :icon=\"icon\"\u003e\n      \u003ctemplate #description\u003e\n        Please Wait...\n      \u003c/template\u003e\n    \u003c/Loader\u003e\n  \u003c/main\u003e\n\u003c/template\u003e\n```\n\n\n# Demo\n* https://loading-component.netlify.app/\n\n## License\n[![License](https://img.shields.io/badge/LICENSE-GPL--3.0-orange)](https://github.com/mustafadalga/loading-spinner/blob/main/LICENSE)","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmustafadalga%2Floading-spinner","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmustafadalga%2Floading-spinner","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmustafadalga%2Floading-spinner/lists"}