https://github.com/cuongdevjs/vue-schedule
library build calendar schedule by day and by week base on Element UI Kit
https://github.com/cuongdevjs/vue-schedule
Last synced: 9 months ago
JSON representation
library build calendar schedule by day and by week base on Element UI Kit
- Host: GitHub
- URL: https://github.com/cuongdevjs/vue-schedule
- Owner: cuongdevjs
- License: mit
- Created: 2019-04-20T18:04:07.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2024-10-20T02:46:23.000Z (over 1 year ago)
- Last Synced: 2025-08-06T06:45:51.423Z (10 months ago)
- Language: Vue
- Homepage:
- Size: 1.31 MB
- Stars: 8
- Watchers: 1
- Forks: 0
- Open Issues: 41
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- Funding: .github/FUNDING.yml
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# vue-schedule
### schedule display by day and by week
[Link NPM](https://www.npmjs.com/package/vue-calendar-schedule)

## But first, because some reason about import setting dependencies in bundle package so it won't work if install by normal way
### If you wanna use package, you must have prerequisites:
- If your project use [Element UI Kit](https://element.eleme.io), you can go through next step.
1. First, install Element UI, `npm i element-ui -S`
2. Don't worry about size, we will just use Table's package Element, by way import in **App.vue**
```
import Vue from 'vue';
import { Table } from 'element-ui';
import locale from 'element-ui/lib/locale/lang/en';
Vue.use(Table, {locale});
```
* Please visit [repo GitHub here!](https://github.com/CuongStf/vue-schedule)
* Clone project and copy file CalendarByDay.vue (Schedule by Day), CalendarElement.vue (Schedule by Week) in src/components directory in your project.
* Use the files above as file CalendarSchedule.vue in repo
* And now you can custom as you like.
