You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Add to "## Basic functionality: Add tasks"
As I was working through the tutorial I could not figure out why my list would not show up. I think it would be wise to make sure it is stated not to forget to set a height on the <ListView> component.
* Fixed a misspelling
I forgot the > add the end of my List View component.
Copy file name to clipboardExpand all lines: content/docs/en/getting-started/2-playground-tutorial.md
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -185,7 +185,7 @@ Use a `<ListView>` to show tasks below the input field.
185
185
1. Configure the positioning of the elements within the grid.
186
186
* Set the `<TextField>` to inhabit the first column and the first row.
187
187
* Set the `<Button>` to inhabit the second column and the first row.
188
-
1. Clean up sample code from the `<TextField>` and the `<ListView>`.
188
+
1. Clean up sample code from the `<TextField>` and the `<ListView>` but make sure to set a height for the `<ListView>`.
189
189
1. Log newly added tasks in the console.
190
190
1. Add newly added tasks into the array of tasks. Use `unshift` to place new items at the top of the page.
191
191
1. Clear the text field after input.
@@ -225,7 +225,7 @@ new Vue({
225
225
<TextField row="0" col="0" v-model="textFieldValue" hint="Enter text..." editable="true" @returnPress="onButtonTap" /> <!-- Configures the text field and ensures that pressing Return on the keyboard produces the same result as tapping the button. -->
0 commit comments