扫描二维码下载沐宇APP

沐宇

微信扫码使用沐宇小程序

沐宇

sortable浜嬩欢鐩戝惉鎬庝箞璁剧疆

扬州沐宇科技
2024-06-27 12:04:22
sortable

鍦╒ue涓娇鐢╯ortable鎻掍欢鏉ュ疄鐜版嫋鎷芥帓搴忔椂锛屽彲浠ラ€氳繃鍦ㄧ粍浠朵腑娣诲姞sortable鐨勪簨浠剁洃鍚柟娉曟潵璁剧疆浜嬩欢鐩戝惉銆備互涓嬫槸涓€涓畝鍗曠殑绀轰緥锛?/p>

<template>
  <div>
    <ul ref="sortableList">
      <li v-for="(item, index) in items" :key="item.id">
        {{ item.name }}
      </li>
    </ul>
  </div>
</template>

<script>
import Sortable from 'sortablejs';

export default {
  data() {
    return {
      items: [
        { id: 1, name: 'Item 1' },
        { id: 2, name: 'Item 2' },
        { id: 3, name: 'Item 3' },
      ]
    };
  },
  mounted() {
    const sortableList = new Sortable(this.$refs.sortableList, {
      onEnd: (evt) => {
        // evt.oldIndex is the old index of the dragged element
        // evt.newIndex is the new index of the dragged element
        // You can update the items array based on these indexes
      }
    });
  }
};
</script>

鍦ㄤ笂闈㈢殑绀轰緥涓紝鎴戜滑鍦ㄧ粍浠剁殑mounted鐢熷懡鍛ㄦ湡閽╁瓙涓疄渚嬪寲浜哠ortable锛屽苟璁剧疆浜唎nEnd浜嬩欢鐩戝惉鏂规硶銆傚湪onEnd浜嬩欢涓紝鎴戜滑鍙互鑾峰彇鍒拌鎷栨嫿鍏冪礌鐨勬棫绱㈠紩鍜屾柊绱㈠紩锛屽苟鏍规嵁杩欎簺绱㈠紩鏇存柊items鏁扮粍銆?/p>

扫码添加客服微信