refactor(client): Fix order of component property
This commit is contained in:
parent
9008664606
commit
7bb8d8b27e
|
@ -19,14 +19,14 @@ import MkButton from './button.vue';
|
||||||
import paging from '../../scripts/paging';
|
import paging from '../../scripts/paging';
|
||||||
|
|
||||||
export default Vue.extend({
|
export default Vue.extend({
|
||||||
mixins: [
|
|
||||||
paging({}),
|
|
||||||
],
|
|
||||||
|
|
||||||
components: {
|
components: {
|
||||||
MkButton
|
MkButton
|
||||||
},
|
},
|
||||||
|
|
||||||
|
mixins: [
|
||||||
|
paging({}),
|
||||||
|
],
|
||||||
|
|
||||||
props: {
|
props: {
|
||||||
pagination: {
|
pagination: {
|
||||||
required: true
|
required: true
|
||||||
|
|
Loading…
Reference in New Issue