| 1234567891011121314151617181920212223242526272829 |
- <template>
- <view class="shadow-2 z-card" :style="{width:width+'rpx'}">
- <slot></slot>
- </view>
- </template>
- <script>
- export default{
- name:'z-card',
- props:{
- width:{
- type:String,
- default:'690'
- }
- },
- data(){
- return{
-
- }
- }
- }
- </script>
- <style scoped lang="scss">
- .z-card{
- margin: 0 auto;
- border-radius: 2rpx;
- }
- </style>
|