12345678910111213141516171819202122232425262728293031323334 |
- <template>
-
- <cell :style="[cellStyle]">
- <slot />
- </cell>
-
-
- <view :style="[cellStyle]">
- <slot />
- </view>
-
- </template>
- <script>
- export default {
- name: "z-paging-cell",
- props: {
-
- cellStyle: {
- type: Object,
- default: function() {
- return {}
- }
- }
- }
- }
- </script>
|