|
|
@@ -2,45 +2,12 @@
|
|
|
<template>
|
|
|
<v-container>
|
|
|
<v-row>
|
|
|
- <v-col cols="4">
|
|
|
+ <v-col
|
|
|
+ v-for="col in cols"
|
|
|
+ cols="4"
|
|
|
+ >
|
|
|
<div
|
|
|
- v-for="item in col1"
|
|
|
- :key="item.title"
|
|
|
- class="badges-section"
|
|
|
- >
|
|
|
- <h4>{{ item.title }}</h4>
|
|
|
-
|
|
|
- <Badge
|
|
|
- v-for="badge in item.badges"
|
|
|
- :title="badge.title"
|
|
|
- :img="badge.logo"
|
|
|
- :subtitle="badge.subtitle"
|
|
|
- :details="badge.details"
|
|
|
- />
|
|
|
- </div>
|
|
|
- </v-col>
|
|
|
-
|
|
|
- <v-col cols="4">
|
|
|
- <div
|
|
|
- v-for="item in col2"
|
|
|
- :key="item.title"
|
|
|
- class="badges-section"
|
|
|
- >
|
|
|
- <h4>{{ item.title }}</h4>
|
|
|
-
|
|
|
- <Badge
|
|
|
- v-for="badge in item.badges"
|
|
|
- :title="badge.title"
|
|
|
- :img="badge.logo"
|
|
|
- :subtitle="badge.subtitle"
|
|
|
- :details="badge.details"
|
|
|
- />
|
|
|
- </div>
|
|
|
- </v-col>
|
|
|
-
|
|
|
- <v-col cols="4">
|
|
|
- <div
|
|
|
- v-for="item in col3"
|
|
|
+ v-for="item in col"
|
|
|
:key="item.title"
|
|
|
class="badges-section"
|
|
|
>
|
|
|
@@ -267,7 +234,7 @@ const col3 = [
|
|
|
details: ''
|
|
|
},
|
|
|
{
|
|
|
- title: 'Continuous Improvement',
|
|
|
+ title: i18n.t('continuous_improvement'),
|
|
|
logo: '/images/continuous-improvement.png',
|
|
|
subtitle: i18n.t('x_years', { years: 9 }),
|
|
|
details: ''
|
|
|
@@ -287,6 +254,13 @@ const col3 = [
|
|
|
]
|
|
|
}
|
|
|
]
|
|
|
+
|
|
|
+const cols = [
|
|
|
+ col1,
|
|
|
+ col2,
|
|
|
+ col3
|
|
|
+]
|
|
|
+
|
|
|
</script>
|
|
|
|
|
|
<style scoped lang="scss">
|