Skip to content
This repository has been archived by the owner on Jan 22, 2023. It is now read-only.

Commit

Permalink
Merge pull request #14 from add2cal/dev
Browse files Browse the repository at this point in the history
Dev
  • Loading branch information
jekuer authored Nov 10, 2022
2 parents becc44d + ccbd587 commit aa088ac
Show file tree
Hide file tree
Showing 6 changed files with 738 additions and 728 deletions.
2 changes: 1 addition & 1 deletion .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

<!--- Go over all the following points, and put an `x` in the boxes. -->

- [] My code follows the code style of this project (I at least ran `npm run format` and `npm run build`).
- [] My code follows the code style of this project (I ran `npm run format`).
- [] I have read the **CONTRIBUTING** document.

<!--- Pull requests should be thought of as a conversation. There will be some back and forth when trying to get code merged into this or any other project. With all but the simplest changes you can and should expect that the maintainers of the project will request changes to your code. Please be aware of that and check in after you open your PR in order to get your code merged in cleanly.
Expand Down
12 changes: 7 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ This is a wrapper repository for the popular [Add to Calendar Button](), making

<br /><br />

This is for everybody, who wants to include a button at his/her Vue.js application, which enables users to easily add a specific event to their calendars.
This is for everybody, who wants to include a button at their Vue.js application, which enables users to easily add a specific event to their calendars.
The main goal of this repository is to keep this process as easy as possible at maximum compatibility. Simply define your button configuration and everything else is automatically generated by the script.
Supporting calendars at Apple, Google, Microsoft (365, Outlook, Teams), Yahoo, and generic iCal.

Expand Down Expand Up @@ -105,10 +105,11 @@ import AddToCalendarButton from 'add-to-calendar-button-vue';
```

Use the componet inside your code and declare any options as attributes.

```
<add-to-calendar-button
name="Test-Event"
startDate="2023-05-22"
<add-to-calendar-button
name="Test-Event"
startDate="2023-05-22"
:options="['Apple','Google','Yahoo','iCal']"
></add-to-calendar-button>
```
Expand Down Expand Up @@ -146,6 +147,7 @@ Find all information about the available parameters and how to configure specifi

## ⚡ Changelog

- v1.2 : asynch functionality
- v1.1 : changing component name
- v1.0 : initial release

Expand All @@ -163,7 +165,7 @@ Anyone is welcome to contribute, but mind the [guidelines](.github/CONTRIBUTING.
- [Feature requests](.github/CONTRIBUTING.md#features)
- [Pull requests](.github/CONTRIBUTING.md#pull-requests)

**IMPORTANT NOTE:** Run `npm install`, `npm run format`, and `npm run build` before you create any pull request!
**IMPORTANT NOTE:** Run `npm install` and `npm run format` before you create any pull request!

<br />

Expand Down
Loading

0 comments on commit aa088ac

Please sign in to comment.