Skip to content

Commit 6039e1c

Browse files
Merge pull request #278 from vuejs-translations/7d7d50ed
docs: fix misplaced semicolon in crud example * Fix misplaced semicolen * remove semi (#277)
2 parents c6ae8fc + 8e4db94 commit 6039e1c

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)