Skip to content

Commit

Permalink
release: 0.2.0-beta.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Alfred-Skyblue committed May 30, 2023
1 parent 3c0c8d1 commit 8744bf7
Showing 1 changed file with 1 addition and 9 deletions.
10 changes: 1 addition & 9 deletions src/__docs__/clone/demo.vue
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
:sort="false"
class="flex flex-col gap-2 p-4 w-300px bg-gray-500/5 rounded"
@clone="onClone"
:clone="clone"
>
<div
v-for="item in list1"
Expand Down Expand Up @@ -41,14 +40,7 @@
<script lang="ts" setup>
import { ref } from 'vue'
import { VueDraggable } from 'vue-draggable-plus'
import { computed } from 'vue-demi'
const _msg = ref<number | string>(1)
const msg = computed({
get: () => _msg.value,
set: (value: number | string) => {
_msg.value = value
}
})
const list1 = ref([
{
name: 'Joao',
Expand Down

0 comments on commit 8744bf7

Please sign in to comment.