<shadow-view>...</shadow-view>
<template>
<scroller class="app">
<shadow-view
class="shadow"
placement="all"
blur="30"
offsetX="0"
offsetY="0"
color="#ff0000"
backgroundColor="#ffffff">
<text class="text">11121112111211121112111234567890</text>
<text>222</text>
<text>333</text>
</shadow-view>
<shadow-view
class="shadow"
placement="top|left"
blur="30"
offsetX="0"
offsetY="0"
color="#ff0000"
backgroundColor="#ffffff">
<text class="text">11121112111211121112111234567890</text>
<text>222</text>
<text>333</text>
</shadow-view>
<shadow-view
class="shadow"
placement="right|bottom"
blur="30"
offsetX="0"
offsetY="0"
color="#ff0000"
backgroundColor="#ffffff">
<text class="text">11121112111211121112111234567890</text>
<text>222</text>
<text>333</text>
</shadow-view>
</scroller>
</template>
<style scoped>
.app {
flex: 1;
}
.shadow {
width: 300px;
height: 300px;
margin: 80px 225px;
padding: 50px
}
.text {
font-size: 32px
}
</style>
<script>
export default {}
</script>