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
Copy file name to clipboardExpand all lines: src/content/create-blue-block-button.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,9 +9,9 @@ postnumber: 27
9
9
framework: vue
10
10
---
11
11
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 Secondary button Blue.
12
+
In this chapter we will build out a Secondary button Blue.
13
13
14
-
In the components folder create a folder called buttons. Then create a BlueBlockButton.vue component and add the following:
14
+
In the `buttons` folder, create a `BlueBlockButton.vue` component and add the following:
15
15
16
16
```javascript
17
17
<template>
@@ -63,7 +63,7 @@ export default {
63
63
64
64
🧁In the template part we have a button with a handle click event.
65
65
66
-
🧁 with a v-if statement that is triggered if the isLoading prop is set to true. It will show the loading the loading spinner.
66
+
🧁 Then if the `v-if` statement is triggered the isLoading prop is set to true. It will show the loading spinner.
0 commit comments