22 lines
348 B
Vue
22 lines
348 B
Vue
<template>
|
|
<view class="flex align-center justify-center"
|
|
hover-class="bg-hover-light" @click="$emit('click')"
|
|
style="height: 90rpx;width: 90rpx;">
|
|
<text class="iconfont font-md">{{icon}}</text>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
props: {
|
|
icon: {
|
|
type: String,
|
|
default: ''
|
|
},
|
|
},
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
</style>
|