Skip to content

Commit be05e6b

Browse files
LukasBollsdirix
andauthored
Apply suggestions from code review
Co-authored-by: Stefan Dirix <[email protected]>
1 parent a137a24 commit be05e6b

File tree

5 files changed

+6
-5
lines changed

5 files changed

+6
-5
lines changed

packages/material/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,6 @@ function App() {
9898
/>
9999
);
100100
}
101-
export default App;
102101
```
103102

104103
## License

packages/vanilla/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,6 @@ function App() {
9393
/>
9494
);
9595
}
96-
export default App;
9796
```
9897

9998
## License

packages/vue/vue-vanilla/README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,8 @@ export default defineComponent({
116116
},
117117
data() {
118118
return {
119-
renderers: Object.freeze(vanillaRenderers),data: {
119+
renderers: Object.freeze(vanillaRenderers),
120+
data: {
120121
number: 5
121122
},
122123
schema: {

packages/vue/vue/README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,8 @@ export default defineComponent({
8989
### Renderer Set
9090

9191
The `@jsonforms/vue` package offers JSON Forms Core bindings based on the composition API.
92-
These bindings handle the props given to the `dispatch-renderer` and use the JSON Forms Core to determine specialized inputs for many use cases like validation and rule-based visibility. This way it´s possible to create custom renderers or entire renderer Sets.
92+
These bindings handle the props given to the `dispatch-renderer` and use the JSON Forms Core to determine specialized inputs for many use cases like validation and rule-based visibility.
93+
Using these bindings as a basis it's straightforward to create renderer sets for Vue 3.
9394

9495
#### Basic control renderer example
9596

packages/vue2/vue2/README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,8 @@ Vue.use(VueCompositionAPI)
9898
### Renderer Set
9999

100100
The `@jsonforms/vue` package offers JSON Forms Core bindings based on the composition API.
101-
These bindings handle the props given to the `dispatch-renderer` and use the JSON Forms Core to determine specialized inputs for many use cases like validation and rule-based visibility. This way it´s possible to create custom renderers or entire renderer Sets.
101+
These bindings handle the props given to the `dispatch-renderer` and use the JSON Forms Core to determine specialized inputs for many use cases like validation and rule-based visibility.
102+
Using these bindings as a basis it's straightforward to create renderer sets for Vue 2.
102103

103104
#### Basic control renderer example
104105

0 commit comments

Comments
 (0)