Skip to content
This repository was archived by the owner on Apr 8, 2020. It is now read-only.

Commit

Permalink
Merge branch 'development' into feat/add-graph-tested-persons
Browse files Browse the repository at this point in the history
  • Loading branch information
kaizumaki authored Mar 19, 2020
2 parents d17fdcb + 83abb1d commit cf56c75
Show file tree
Hide file tree
Showing 13 changed files with 786 additions and 288 deletions.
42 changes: 42 additions & 0 deletions components/ConfirmedCasesCard.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
<template>
<data-view :title="title" :title-id="titleId" :date="date">
<template v-slot:button>
<p :class="$style.note">
{{ $t('(注)チャーター機帰国者、クルーズ船乗客等は含まれていない') }}
</p>
</template>
<slot />
</data-view>
</template>

<style lang="scss" module>
.note {
margin-top: 10px;
margin-bottom: 0;
font-size: 12px;
color: $gray-3;
}
</style>

<script lang="ts">
import Vue from 'vue'
import DataView from '@/components/DataView.vue'
export default Vue.extend({
components: { DataView },
props: {
title: {
type: String,
default: ''
},
titleId: {
type: String,
default: ''
},
date: {
type: String,
default: ''
}
}
})
</script>
Loading

0 comments on commit cf56c75

Please sign in to comment.