{"id":13719200,"url":"https://github.com/initbase/vue-daily-schedule","last_synced_at":"2025-05-07T11:31:25.296Z","repository":{"id":38286489,"uuid":"280878548","full_name":"initbase/vue-daily-schedule","owner":"initbase","description":"📅 VueJS component for scheduler","archived":false,"fork":false,"pushed_at":"2023-01-01T01:13:38.000Z","size":3114,"stargazers_count":23,"open_issues_count":8,"forks_count":8,"subscribers_count":2,"default_branch":"master","last_synced_at":"2024-10-31T18:57:49.828Z","etag":null,"topics":["daily","nuxt","schedule","vue","week-schedule","weekly"],"latest_commit_sha":null,"homepage":"https://vue-daily-schedule.vercel.app/","language":"Vue","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/initbase.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null},"funding":{"github":null,"patreon":null,"open_collective":null,"ko_fi":"burhanahmeed","tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":null,"otechie":null,"custom":["https://karyakarsa.com/burhanahmeed","https://www.buymeacoffee.com/zOkT07A"]}},"created_at":"2020-07-19T14:07:30.000Z","updated_at":"2024-05-21T09:36:32.000Z","dependencies_parsed_at":"2023-01-31T20:16:18.900Z","dependency_job_id":null,"html_url":"https://github.com/initbase/vue-daily-schedule","commit_stats":null,"previous_names":["burhanahmeed/vue-daily-schedule"],"tags_count":6,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/initbase%2Fvue-daily-schedule","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/initbase%2Fvue-daily-schedule/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/initbase%2Fvue-daily-schedule/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/initbase%2Fvue-daily-schedule/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/initbase","download_url":"https://codeload.github.com/initbase/vue-daily-schedule/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":224592484,"owners_count":17337101,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["daily","nuxt","schedule","vue","week-schedule","weekly"],"created_at":"2024-08-03T01:00:44.266Z","updated_at":"2024-11-14T08:31:27.224Z","avatar_url":"https://github.com/initbase.png","language":"Vue","funding_links":["https://ko-fi.com/burhanahmeed","https://karyakarsa.com/burhanahmeed","https://www.buymeacoffee.com/zOkT07A"],"categories":["Open Source Project"],"sub_categories":["UI Component"],"readme":"# vue daily scheduler\n\n\u003cdiv align='center'\u003e\n\n[![VEDR](./src/assets/preview.png)](.)\n\nVue daily scheduler is a custom Vue2 component to manage repeated schedule. It's a straightforward scheduler component you can use.\n\n\u003c/div\u003e\n\n[![GitHub forks](https://img.shields.io/github/forks/initbase/vue-daily-schedule)](https://github.com/initbase/vue-daily-schedule/network)\n[![GitHub stars](https://img.shields.io/github/stars/initbase/vue-daily-schedule)](https://github.com/initbase/vue-daily-schedule/stargazers)\n[![GitHub license](https://img.shields.io/github/license/initbase/vue-daily-schedule)](https://github.com/initbase/vue-daily-schedule/blob/master/LICENSE)\n[![GitHub issues](https://img.shields.io/github/issues/initbase/vue-daily-schedule)](https://github.com/initbase/vue-daily-schedule/issues)\n\n### Demo\n\n[Demo here](https://vue-daily-schedule.vercel.app/)\n\n[NPMJS](https://www.npmjs.com/package/vue-daily-scheduler)\n\n### Install\nNode\n```\nnpm install vue-daily-scheduler\n\n# or yarn\n\nyarn add vue-daily-scheduler\n```\nBrowser\n```html\n\u003clink href=\"https://unpkg.com/vue-daily-scheduler@latest/dist/vue-schedule.min.css\" ref=\"stylesheet\" /\u003e\n\u003cscript src=\"https://unpkg.com/vue-daily-scheduler@latest/dist/vue-schedule.min.js\"\u003e\u003c/script\u003e\n```\n\nthen, use inside a component\n```javascript\nimport 'vue-daily-scheduler/dist/vue-schedule.min.css'\nimport VueSchedule from 'vue-daily-scheduler'\nexport default {\n    components: {\n        VueSchedule\n    },\n    data () {\n        return {\n            schedule: {\n                0: [],\n                1: [],\n                2: [],\n                3: [],\n                4: [],\n                5: [],\n                6: []\n            }\n        }\n    }\n}\n```\nuse it inside vue template\n```html\n\u003ctemplate\u003e\n    \u003cdiv\u003e\n        \u003cVueSchedule v-model=\"schedule\" /\u003e\n    \u003c/div\u003e\n\u003c/template\u003e\n```\n\n### Props\n|Props|Desc|Type|Default|\n|---|---|---|---|\n|`steps`|The interval in minutes|`Number`|`60`|\n|`dayTable`|Array of day names for changing order or i18n|`Array`|`['So','Mo','Tu','We','Th','Fr','Sa']`|\n|`timeArray`|This props is optional. Array of time. `steps` props will be ignored if this props is filled.|`Array`|`[]`|\n|`strWeek`|String for i18n support|`String`|`Week`|\n|`strTime`|String for i18n support|`String`|`Time`|\n|`strDay`|String for i18n support|`String`|`Day`|\n|`disableWeekSelect`|Disable the whole week selection|`Boolean`|`false`|\n|`disableDaySelect`|Disable the whole day selection|`Boolean`|`false`|\n|`bg`|Block scheduler background color|`String`|`#223642`|\n|`bgHover`|Block scheduler background color when on hover|`String`|`#84dafc7a`|\n|`bgActive`|Block scheduler background color when active|`String`|`#84c9fc`|\n|`textColor`|Text color inside block scheduler|`String`|`#000`|\n#### Example\n```html\n\u003ctemplate\u003e\n    \u003cdiv\u003e\n        \u003cVueSchedule \n            v-model=\"schedule\" \n            bg=\"red\"\n            bgHover=\"gray\"\n            bgActive=\"black\"\n            textColor=\"#fff\"\n        /\u003e\n    \u003c/div\u003e\n\u003c/template\u003e\n```\n\n### with `timeArray`\n```html\n\u003ctemplate\u003e\n    \u003cdiv\u003e\n        \u003cVueSchedule \n            v-model=\"schedule\" \n            :timeArray=\"['1AM', '3AM', '6AM', '9AM', '11AM', '3PM', '6PM', '9PM', '11PM']\"\n        /\u003e\n    \u003c/div\u003e\n\u003c/template\u003e\n```\n### Future plans\n- \u0026#9744; add disabled time props\n\n\n### Contribution\nFeel free if you want to submit pull request or an issue.\n\n##### Creators\n|Name|\n|---|\n|[Burhanuddin Ahmed](https://github.com/burhanahmeed/)|\n|[Oleg Zernov](https://github.com/sawyer3273)|\n\n### License\n MIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Finitbase%2Fvue-daily-schedule","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Finitbase%2Fvue-daily-schedule","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Finitbase%2Fvue-daily-schedule/lists"}