vue-easy-polls
A Vue.js component for creating polls, voting and showing results. It’s easy to implement and easy to customize.
Prerequisites
Vue.js 2
Axios
Installing
Using npm:
Example (NPM)
Customize
Poll Attributes
PollCreate.vue
Attribute | Description | Accepted values | HTTP verb | Required | Default |
---|---|---|---|---|---|
savePollUrl | This is the endpoint where your server will save the current poll | URL (string) | POST | required | - |
PollView.vue
Attribute | Description | Accepted values | HTTP verb | Required | Default |
---|---|---|---|---|---|
saveVoteUrl | This is the endpoint where your server will save the vote for the current poll | URL (string) | POST | required | - |
getPollUrl | This is the endpoint from where your server will return the poll | URL (string) | GET | required | - |