We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Some feedback:
I got stuck at importing from laravel-mix, this imports didn't work
import Vuetable from 'vuetable-2/src/components/Vuetable' import VuetablePagination from 'vuetable-2/src/components/VuetablePagination'
this worked:
<script> import Vuetable from 'vuetable-2' import { VuetablePagination, VuetablePaginationInfo } from "vuetable-2" export default { components: { Vuetable, VuetablePagination, VuetablePaginationInfo },
If you are using laravel defaults, you might not need to import jquery or semantic ui
this css worked for me:
Properties
<vuetable :css="css.table"> </vuetable> <vuetable-pagination :css="css.pagination"> </vuetable-pagination>
in data:
css: { table: { tableClass: 'table bg-white table-striped shadow-custom', loadingClass: 'loading', ascendingIcon: 'fa fa-chevron-up', descendingIcon: 'fa fa-chevron-down', handleIcon: 'fa fa-bars', }, pagination: { infoClass: 'pull-left', wrapperClass: ' pull-right pagination', activeClass: 'active', disabledClass: 'disabled', pageClass: 'page-link', linkClass: 'page-link', icons: { first: '', prev: '', next: '', last: '', }, } }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Some feedback:
Importing dependencies
I got stuck at importing from laravel-mix, this imports didn't work
this worked:
Dependencies
If you are using laravel defaults, you might not need to import jquery or semantic ui
Bootstrap
this css worked for me:
Properties
in data:
The text was updated successfully, but these errors were encountered: