10000 Guide > Reusability & Composition > Render functions の翻訳を追従 by naokie · Pull Request #308 · vuejs-jp/ja.vuejs.org · GitHub
[go: up one dir, main page]

Skip to content

Guide > Reusability & Composition > Render functions の翻訳を追従 #308

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

Merged
merged 17 commits into from
May 6, 2021
Merged
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
Next Next commit
fix: add an emits option to examples that emit events
  • Loading branch information
naokie committed Apr 29, 2021
commit 74996251c1c76df028abfe2ea376ecf5cb303399
1 change: 1 addition & 0 deletions src/guide/render-function.md
Original file line number Diff line number Diff line change
Expand Up @@ -279,6 +279,7 @@ render() {

```js
props: ['modelValue'],
emits: ['update:modelValue'],
render() {
return Vue.h(SomeComponent, {
modelValue: this.modelValue,
Expand Down
0