Skip to content

v1.0.11

Compare
Choose a tag to compare
@ratiw ratiw released this 04 May 16:58
· 155 commits to master since this release
  • vuetable now has vueify version in src/components directory. Please see instruction in README.Close #12
  • A warning will be dump to console if vuetable cannot find the given pagination-path in the returned JSON. Close #8
  • Pagination component will no longer appear if there is only one page to display. Close #13
  • Add vuetable-pagination:set-options event. You can now set pagination component from main Vue instance.
new Vue({
    //...
    methods: {
        this.$broadcast('vuetable-pagination:set-options', {
            icons: {
                prev: 'glyphicon glyphicon-chevron-left',
                next: 'glyphicon glyphicon-chevron-right'
            },
            wrapperClass: 'form-inline',
            dropdownClass: 'form-control',
            linkClass: 'btn btn-default'
        })
    }
})
  • vuetable-pagination-dropdown has two new props dropdownClass and pageText