React拖拽插件:react-beautiful-dnd

发布时间 2023-12-18 21:02:27作者: 前端加油站

本篇文章主要介绍react-beautiful-dnd,它是基于react的拖拽插件
接下来会从以下几个方面来介绍react-beautiful-dnd

  1. 安装使用
  2. API介绍
  3. Example

1. 安装使用

首先我们需要安装react-beautiful-dnd

# yarn
yarn add react-beautiful-dnd

# npm
npm install react-beautiful-dnd --save

使用时:

import { DragDropContext } from 'react-beautiful-dnd';

2. API介绍