https://www.npmjs.com/package/vuedraggable
https://vue-draggable-plus.pages.dev/

在页面中导入插件

import draggable from "vuedraggable";
<draggable
  :list="pageList"
  sort="true"
  ghost-class="ghost"
  chosen-class="chosenClass"
  animation="300"
  @start="onStart"
  @end="onEnd"
>
  <template #item="{ element, index }">
    <div
      class="posr border br8 flex pt20 pb20 pl10 pr10 mg20 item"
      style="align-items: start"
    >
      <el-popconfirm
        title="确认删除吗?"
        @confirm="deletePage('page', index)"
        @cancel="cancelEvent"
      >
        <template #reference>
          <el-icon
            size="20px"
            color="#aaa"
            class="posa c-point"
            style="top: 10px; right: 10px"
          >
            <Close />
          </el-icon>
        </template>
      </el-popconfirm>
    </div>
  </template>
</draggable>

Logo

中国智能体开发者社区,聚焦智能体与大模型开发,提供前沿资讯、实用工具链、开源项目及行业案例。通过技术沙龙、开发者大赛等活动,促进经验交流与协作,助力开发者快速构建创新智能应用。

更多推荐