Skip to content

Commit fffc75a

Browse files
committed
done with red block button
1 parent 29d6d88 commit fffc75a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/content/create-red-block-button.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ postnumber: 25
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 Primary button.
12+
In this chapter we will build out our button components that we will be using through out the application. First lets go ahead and create a Primary button.
1313

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

1616
```javascript
1717
<template>
@@ -68,7 +68,7 @@ export default {
6868

6969
🧁In the template part we have a button with a handle click event.
7070

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

7373
🧁 We have a method that emits a click event.
7474

0 commit comments

Comments
 (0)