保誠-保戶業務員媒合平台
Tomas
2021-10-31 244a169b021c4b535a2a44b229b53aa70515bcf6
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
<template>
    <nav class="pam-back-action-bar">
        <a @click="$router.push('/')">
          <i class="icon-left"></i>{{ label }}
        </a>
    </nav>
</template>
 
<script lang="ts">
import { Vue, Component } from 'vue-property-decorator';
 
@Component
export default class UiCarousel extends Vue {
 
  label = 'back-action-label-text';
 
}
</script>
 
<style lang="scss" scoped>
.pam-back-action-bar {
  height: 53px;
  border: 1px solid #CCCCCC;
  display: flex;
  align-items: center;
  i {
    font-size: 20px;
    padding-right: 14px;
  }
  a {
    cursor: pointer;
    font-size: 24px;
    font-weight: bold;
    padding: 20px;
  }
}
</style>