1234567891011121314151617181920212223242526272829 |
- <template>
- <swiper-item>
- <slot />
- </swiper-item>
- </template>
- <script>
- import props from './props.js';
-
- {type} prop_name
- * @event {Function()}
- * @example
- */
- export default {
- name: 'u-tabs-item',
- mixins: [uni.$u.mpMixin, uni.$u.mixin,props],
- data() {
- return {
-
- }
- }
- }
- </script>
- <style>
- </style>
|