React.js 轮播图 react-swipe

 我下载的版本是5.1.1 因为最新的版本 用的时候发现了问题 没有用

npm install [email protected] --save
import React from 'react';
import ReactSwipe from 'react-swipe';
import './style.less';

class Category extends React.Component{
  constructor() {
    super();
    this.state = {
      index: 0
    }
  }
  render() {
    let opt = {
      auto: 2000,
      callback: function(index) {
        console.log(index);
        this.setState({index: Number(index)})
      }.bind(this)
    }
   
    return (
      
  • KTV
  • KTV
  • KTV
  • KTV
  • KTV
  • KTV
  • KTV
  • KTV
  • KTV
  • KTV
  • KTV
  • KTV
  • KTV
  • KTV
  • KTV
  • KTV
  • KTV
  • KTV
  • KTV
  • KTV
  • SPA
  • SPA
  • SPA
  • SPA
  • SPA
  • SPA
  • SPA
  • SPA
  • SPA
  • SPA
) } componentDidUpdate() { } } export default Category;

 

你可能感兴趣的:(React)