123456789101112131415161718192021222324252627282930313233343536373839 |
- <template>
-
- <cell :style="[cellStyle]" @touchstart="onTouchstart">
- <slot />
- </cell>
-
-
- <view :style="[cellStyle]" @touchstart="onTouchstart">
- <slot />
- </view>
-
- </template>
- <script>
- export default {
- name: "z-paging-cell",
- props: {
-
- cellStyle: {
- type: Object,
- default: function() {
- return {}
- }
- }
- },
- methods: {
- onTouchstart(e) {
- this.$emit('touchstart', e);
- }
- }
- }
- </script>
|