-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathinformation.vue
60 lines (58 loc) · 2 KB
/
information.vue
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<template>
<v-row justify="center">
<v-col cols="12" md="6" class="body-1">
<v-list three-line dense shaped flat expand>
<v-subheader>General Information</v-subheader>
<v-list-item>
Corona Virus Disease 2019 (COVID19) is a new respiratory illness that
can easily be spread from person to person.
</v-list-item>
<v-divider></v-divider>
<v-list-item>
COVID-19 is spread through contact with droplets produced by a person
who is sneezing or coughing or contaminated surfaces or objects.
</v-list-item>
<v-divider></v-divider>
<v-list-item>
COVID-19 can cause severe symptoms like fever, cough, headache, body
aches and difficulty in breathing.</v-list-item
>
<v-divider></v-divider>
<v-list-item>
COVID-19 is preventable through; –Washing your hands with soap and
running water or using an alcohol based hand sanitizer, – Keeping a
social distance of at least 2 metres or 2-3 steps from people with
flu-like symptoms. – Avoiding shaking hands, hugging or kissing with
people with flu-like symptoms. – Staying at home and avoiding travel
when you have flu-like symptoms.</v-list-item
>
<v-divider></v-divider>
<v-list-item
>Early detection and treatment can contribute greatly to survival of
the patient.</v-list-item
>
<v-divider></v-divider>
<v-list-item>COVID 2019 cannot be transmitted through air.</v-list-item>
</v-list>
</v-col>
</v-row>
</template>
<script>
export default {
transition: 'slide-x-reverse-transition',
head() {
return {
title: 'Information',
titleTemplate: null,
meta: [
{
name: 'description',
content:
'Information about Corona Virus in Kenya. All you need to know about Covid_19(Corona Virus 2019)'
}
]
}
}
}
</script>
<style></style>