cashier_weapp/components/c-image/c-image.vue

27 lines
425 B
Vue

<template>
<u-image :src="src" :radius="radius" :width="width" :height="height" :fade="false" :lazy-load="true" slot="loading"></u-image>
</template>
<script>
export default {
props: {
src: {
type: String,
default: ''
},
width: {
type: [String, Number],
default: 80
},
height: {
type: [String, Number],
default: 80
},
radius: {
type: [String, Number],
default: 16
}
}
};
</script>