8000 sync directive examples with current API by damianstasik · Pull Request #179 · vuejs/rfcs · GitHub
[go: up one dir, main page]

Skip to content

sync directive examples with current API #179

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

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
docs(render-function): sync directive example with current API
  • Loading branch information
visualfanatic authored Jun 18, 2020
commit ddb70fb36fa16da85b3f04f728b3410cd29e9741
5 changes: 2 additions & 3 deletions active-rfcs/0008-render-function-api-change.md
Original file line number Diff line number Diff line change
Expand Up @@ -262,11 +262,10 @@ export default {
const barDir = resolveDirective('bar')

// <some-global-comp v-foo="x" v-bar="y" />
return withDirectives(
h(comp),
return withDirectives(h(comp), [
[fooDir, this.x],
[barDir, this.y]
)
])
}
}
```
Expand Down
0