Skip to content

Commit 70412b0

Browse files
committedNov 30, 2024·
fix: v-drag component without selfclose, close #1959
1 parent 207a000 commit 70412b0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎packages/client/composables/useDragElements.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ export function useDragElementsUpdater(no: number) {
6969

7070
section = type === 'prop'
7171
// eslint-disable-next-line regexp/no-super-linear-backtracking
72-
? section.replace(/<(v-?drag-?\w*)(.*?)(\/)?>/gi, (full, tag, attrs, selfClose, index) => {
72+
? section.replace(/<(v-?drag-?\w*)(.*?)(\/)?>/gi, (full, tag, attrs, selfClose = '', index) => {
7373
if (index === idx) {
7474
replaced = true
7575
const posMatch = attrs.match(/pos=".*?"/)

0 commit comments

Comments
 (0)
Please sign in to comment.