This repository was archived by the owner on Apr 8, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1782 from macropygia/feature/issue-1692-add-teste…
…d-chart (PR)「検査陽性者の状況」カード修正/「検査実施状況」カード追加 データ以外
- Loading branch information
Showing
11 changed files
with
756 additions
and
272 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
Oops, something went wrong.