Skip to content

Commit 5d2233c

Browse files
tinymachinekazupon
authored andcommitted
Add missing comma in code sample (vuejs#924)
In the sample code for a functional component in "Reusable Transitions", fix the missing comma that should separate the props `name` and `mode`.
1 parent 235a521 commit 5d2233c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/v2/guide/transitions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1486,7 +1486,7 @@ Vue.component('my-special-transition', {
14861486
render: function (createElement, context) {
14871487
var data = {
14881488
props: {
1489-
name: 'very-special-transition'
1489+
name: 'very-special-transition',
14901490
mode: 'out-in'
14911491
},
14921492
on: {

0 commit comments

Comments
 (0)