ratiw / vue-table

data table simplify! -- vuetable is a Vue.js component that will automatically request (JSON) data from the server and display them nicely in html table with swappable/extensible pagination component.
MIT License
1.83k stars 303 forks source link

Adding Info for loading from jsdelivr #113

Closed abishekrsrikaanth closed 7 years ago

abishekrsrikaanth commented 7 years ago

Added the project to jsdelivr. Adding documentation on the usage

ratiw commented 7 years ago

Thanks, @abishekrsrikaanth. Can you please add vue and vue-resource as well? Because install using npm or bower will automatically handle the dependencies, but the user will need to do that himself when using jsdelivr.

abishekrsrikaanth commented 7 years ago

Vue and Vue Resource are already on jsdelivr.

http://www.jsdelivr.com/?query=vue

ratiw commented 7 years ago

@abishekrsrikaanth What I was trying to say is that vuetable depends on vue and vue-resource, they should be included before vuetable. So, the info should be like,

  <script src="https://cdn.jsdelivr.net/vue/1.0.28/vue.js"></script>
  <script src="https://cdn.jsdelivr.net/vue.resource/1.0.3/vue-resource.min.js"></script>
  <script src="http://cdn.jsdelivr.net/vue.table/1.5.3/vue-table.js"></script>
oneslash commented 7 years ago

I believe this PR is not needed, as it is just links to CDN, which might be found by googling, and it is additional place where we might have outdated versions of the library.

Bower and NPM should be enough for developers.

abishekrsrikaanth commented 7 years ago

Updated

ratiw commented 7 years ago

@sardorocket It's ok. :)

I believe any contribution is a helping hand, no matter how big or small.

abishekrsrikaanth commented 7 years ago

@sardorocket, @ratiw , just to clarify, jsdelivr automatically monitors any releases on the repository and adds a pulls a version into jsdelivr automatically. Please refer to https://github.com/jsdelivr/jsdelivr#auto-updating. I have already setup vue-table to auto update for each release.