Skip to content

Commit

Permalink
docs: ensure consistency in example for class-and-style.md (#2822)
Browse files Browse the repository at this point in the history
In the inline style are it was written 13 px instead of 30px for the font size. I re write it to 30px
  • Loading branch information
anoopbk123 committed Apr 25, 2024
1 parent ab109fd commit 3cfa678
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/guide/essentials/class-and-style.md
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@ It is often a good idea to bind to a style object directly so that the template
```js
const styleObject = reactive({
color: 'red',
fontSize: '13px'
fontSize: '30px'
})
```

Expand Down

0 comments on commit 3cfa678

Please sign in to comment.