-
Notifications
You must be signed in to change notification settings - Fork 3.4k
Update transitions.md #237
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
change transition exemple
src/guide/transitions.md
10000
<div v-if="show" transition="expand">hello</div> | ||
<div id="app"> | ||
<div v-if="show" transition="expand">hello</div> | ||
<button @click="toggle">botao</button> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What does botao mean?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
trigger for transition 'expend', like the exemple
2016-02-16 14:58 GMT-02:00 Evan You notifications@github.com:
In src/guide/transitions.md
#237 (comment):@@ -35,7 +35,10 @@ When an element with transition is inserted or removed, Vue will:
A typical CSS transition looks like this:-<div v-if="show" transition="expand">hello</div> +<div id="app"> + <div v-if="show" transition="expand">hello</div> + <button @click="toggle">botao</button>What does botao mean?
—
Reply to this email directly or view it on GitHub
https://github.com/vuejs/vuejs.org/pull/237/files#r53040880.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I mean, we should probably use toggle
here so everyone can understand?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
for beginners, yes
2016-02-16 15:47 GMT-02:00 Evan You notifications@github.com:
In src/guide/transitions.md
#237 (comment):@@ -35,7 +35,10 @@ When an element with transition is inserted or removed, Vue will:
A typical CSS transition looks like this:-<div v-if="show" transition="expand">hello</div> +<div id="app"> + <div v-if="show" transition="expand">hello</div> + <button @click="toggle">botao</button>I mean, we should probably use toggle here so everyone can understand?
—
Reply to this email directly or view it on GitHub
https://github.com/vuejs/vuejs.org/pull/237/files#r53048528.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Use English language, @jhserodio ! I don't understand what botao means. - This is what Evan means.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
sorry, botao = button, my fault
2016-02-17 4:22 GMT-02:00 Azamat notifications@github.com:
In src/guide/transitions.md
#237 (comment):@@ -35,7 +35,10 @@ When an element with transition is inserted or removed, Vue will:
A typical CSS transition looks like this:-<div v-if="show" transition="expand">hello</div> +<div id="app"> + <div v-if="show" transition="expand">hello</div> + <button @click="toggle">botao</button>Use English language, @jhserodio https://github.com/jhserodio ! I
don't understand what does botao mean. - This is what Evan means.—
Reply to this email directly or view it on GitHub
https://github.com/vuejs/vuejs.org/pull/237/files#r53125080.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@jhserodio fix that please 👍
Closing due to inactivity, feel free to re-submit if mentioned problems are fixed. |
clarified explanation
change transition exemple