You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
623 B

5 years ago
<template>
<div class="friend">
5 years ago
<div class="inner">
5 years ago
{{ str }}
5 years ago
<span :key="index" class="mx-2" v-for="(list,index) in lists">{{ list }}</span>
5 years ago
</div>
</div>
</template>
<script>
export default {
data() {
5 years ago
return {
str: '友情链接:',
lists: ['科技部', '发改委', '工信部', '太原市综改区', '山西省科技厅', '山西省工信厅', '山西省发改委', '太原市科技厅', '太原市发改委'],
};
5 years ago
},
};
</script>
<style lang="stylus" scoped>
.friend {
line-height: 64px;
5 years ago
background: #fff;
font-size: 12px;
color: rgba(0, 0, 0, 0.65);
5 years ago
}
</style>