Skip to content

Commit dbf7981

Browse files
jay-esjoceqo
andauthored
docs: fix misplaced semicolon in crud example (#3234) (#2574)
* Fix misplaced semicolen * remove semi Co-authored-by: Jocelin <[email protected]>
1 parent 1334fd2 commit dbf7981

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/examples/src/crud/App/composition.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export default {
1515
)
1616

1717
watch(selected, (name) => {
18-
;[last.value, first.value] = name.split(', ')
18+
[last.value, first.value] = name.split(', ')
1919
})
2020

2121
function create() {

0 commit comments

Comments
 (0)