diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2020-08-01 10:02:37 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2020-08-01 10:02:37 +0900 |
| commit | 7bb8d8b27e3fad67511a623cf9f116f3b8c50bfe (patch) | |
| tree | 0d77776e0cc4ca7381d3cdcfef56249d0324d4b3 /src/client | |
| parent | fix(client): Cannot read announcement (diff) | |
| download | misskey-7bb8d8b27e3fad67511a623cf9f116f3b8c50bfe.tar.gz misskey-7bb8d8b27e3fad67511a623cf9f116f3b8c50bfe.tar.bz2 misskey-7bb8d8b27e3fad67511a623cf9f116f3b8c50bfe.zip | |
refactor(client): Fix order of component property
Diffstat (limited to 'src/client')
| -rw-r--r-- | src/client/components/ui/pagination.vue | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/client/components/ui/pagination.vue b/src/client/components/ui/pagination.vue index 79d322bbc4..0db6ee20dc 100644 --- a/src/client/components/ui/pagination.vue +++ b/src/client/components/ui/pagination.vue @@ -19,14 +19,14 @@ import MkButton from './button.vue'; import paging from '../../scripts/paging'; export default Vue.extend({ - mixins: [ - paging({}), - ], - components: { MkButton }, + mixins: [ + paging({}), + ], + props: { pagination: { required: true |