暖心人
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.
 
 
 

36 lines
655 B

<template>
<view class="right-nav row">
<view class="right-nav-button col-12" v-for="(item,index) in buttonGroup" :style="{backgroundImage:'url('+item.image+')'}"></view>
</view>
</template>
<script>
import { imghost } from '@/config/host.js'
export default{
data() {
return {
title: 'Hello',
loading: true,
buttonGroup:[
{
image:imghost+"/right-button-wechat.png",
},{
image:imghost+"/right-button-chat.png",
},{
image:imghost+"/right-button-phone.png",
},
]
}
},
onLoad() {
},
methods: {
}
}
</script>
<style lang="scss">
@import './components/index.scss';
</style>