-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathApp.vue
47 lines (44 loc) · 1.1 KB
/
App.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
<template>
<div id="body">
<immunization-component :config="config" :patientdata="patientData" :hospitaldata="hospitalData" @done="console"/>
</div>
</template>
<script>
import ImmunizationComponent from './immunization/Immunization.vue'
import defaultConfig from './immunization/default'
import '@fortawesome/fontawesome-free/css/all.css'
import '@fortawesome/fontawesome-free/js/all.js'
export default {
components: {
ImmunizationComponent
},
data() {
return {
config: defaultConfig,
patientData: {
reference: "[email protected]"
},
hospitalData: {
performer: [
{
actor: {
reference: "[email protected]"
}
}
],
location: {
reference: "1236"
}
}
}
},
methods: {
console (...a) {
console.log(...a);
}
}
}
</script>
<style>
@import "https://cdn.jsdelivr.net/npm/[email protected]/css/bulma.min.css";
</style>