diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2021-05-30 10:05:25 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2021-05-30 10:05:25 +0900 |
| commit | 52e54cf0dc87fb9a4bf9ad0abbd8726ff92671d9 (patch) | |
| tree | 86ed66c47638eeec14c42d7b42686fb66c50c3ae /src/client/components | |
| parent | fix local emoji detection (diff) | |
| download | sharkey-52e54cf0dc87fb9a4bf9ad0abbd8726ff92671d9.tar.gz sharkey-52e54cf0dc87fb9a4bf9ad0abbd8726ff92671d9.tar.bz2 sharkey-52e54cf0dc87fb9a4bf9ad0abbd8726ff92671d9.zip | |
refactor
Diffstat (limited to 'src/client/components')
| -rw-r--r-- | src/client/components/date-separated-list.vue | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/components/date-separated-list.vue b/src/client/components/date-separated-list.vue index 34085cc070..6a0c7f29f2 100644 --- a/src/client/components/date-separated-list.vue +++ b/src/client/components/date-separated-list.vue @@ -1,11 +1,11 @@ <script lang="ts"> -import { defineComponent, h, TransitionGroup } from 'vue'; +import { defineComponent, h, PropType, TransitionGroup } from 'vue'; import MkAd from '@client/components/global/ad.vue'; export default defineComponent({ props: { items: { - type: Array, + type: Array as PropType<{ id: string; createdAt: string; _shouldInsertAd_: boolean; }[]>, required: true, }, direction: { |