Skip to content

Commit 80c6b27

Browse files
committed
done with remove buttons
1 parent 267f923 commit 80c6b27

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/content/create-remove-button.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ postnumber: 28
99
framework: vue
1010
---
1111

12-
In this chapter we will build out our components that we will be using through out the application. First lets go ahead and create a Remove button.
12+
In this chapter we will build out a Remove button.
1313

14-
In the components folder create a folder called buttons. Then create a RemoveButton.vue component and add the following:
14+
In the `buttons` folder, create a `RemoveButton.vue` component and add the following:
1515

1616
```javascript
1717
<template>
@@ -41,7 +41,7 @@ export default {
4141

4242
🧁In the template part we have a button with a handle click event.
4343

44-
🧁 with a v-if statement that is triggered if the isLoading prop is set to true. It will show the loading the loading spinner.
44+
🧁 Then if the `v-if` statement is triggered the isLoading prop is set to true. It will show the loading spinner.
4545

4646
🧁 We have a method that emits a click event.
4747

0 commit comments

Comments
 (0)