|
|
@@ -9,8 +9,28 @@ section.w-flex.column.pb5
|
|
9
|
9
|
p(v-if="tabContent[item].matchPerc") {{ tabContent[item].matchPerc }}%
|
|
10
|
10
|
p(v-else)
|
|
11
|
11
|
p {{ item }}
|
|
12
|
|
- template(v-if="isTab" #item-content="{ item }")
|
|
13
|
|
- .tab
|
|
|
12
|
+ // About Tab
|
|
|
13
|
+ template(#item-content.1="{ item }")
|
|
|
14
|
+ .tab--about
|
|
|
15
|
+ p {{ tabContent[item].tab }}
|
|
|
16
|
+ br
|
|
|
17
|
+ p {{ tabContent[item].tab }}
|
|
|
18
|
+ br
|
|
|
19
|
+ hr
|
|
|
20
|
+
|
|
|
21
|
+ // Passion Tab
|
|
|
22
|
+ template(#item-content.2="{ item }")
|
|
|
23
|
+ .tab--passion
|
|
|
24
|
+ p {{ tabContent[item].tab }}
|
|
|
25
|
+
|
|
|
26
|
+ // Aspirations Tab
|
|
|
27
|
+ template(#item-content.3="{ item }")
|
|
|
28
|
+ .tab--aspirations
|
|
|
29
|
+ p {{ tabContent[item].tab }}
|
|
|
30
|
+
|
|
|
31
|
+ // Skills Tab
|
|
|
32
|
+ template(#item-content.4="{ item }")
|
|
|
33
|
+ .tab--skills
|
|
14
|
34
|
p {{ tabContent[item].tab }}
|
|
15
|
35
|
|
|
16
|
36
|
// Untabbed Layout
|