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
| <template>
| <div class="mine-curriculum-intention-job-content">
| <div v-for="item in jobTagList" :key="item" class="mine-curriculum-intention-job-item">
| {{ item }}
| </div>
| </div>
| </template>
|
| <script setup lang="ts">
| defineOptions({
| name: 'JobTagList',
| });
|
| type Props = {
| jobTagList?: string[];
| };
|
| const props = withDefaults(defineProps<Props>(), {});
| </script>
|
| <style lang="scss">
| @import '@/styles/common.scss';
|
| .mine-curriculum-intention-job-content {
| display: inline-flex;
| flex-wrap: wrap;
| gap: 16px;
|
| .mine-curriculum-intention-job-item {
| font-size: 20px;
| color: boleGetCssVar('color', 'primary');
| padding: 6px 16px;
| background-color: #edf2ff;
| border-radius: 4px;
| display: inline-flex;
| align-items: center;
| justify-content: center;
| }
| }
| </style>
|
|