Skip to content

Commit

Permalink
fix(doc): fix markdown lint
Browse files Browse the repository at this point in the history
  • Loading branch information
zealotchen0 committed Jul 5, 2024
1 parent 3d97378 commit d5335a0
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions docs/development/react-vue-3.0-upgrade-guidelines.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,14 +91,17 @@
Vue3.0 默认开启 scoped 无需设置开关

5. hippy-vue 布局属性如 height、width 在 3.0 的版本将不支持放在自定义属性里,如:
```

``` javascript
<div
:height="36"
:width="36"
>
```

需要放在style属性中,如:
```

``` javascript
<div
:style={height: 36, width: 36}
>
Expand Down

0 comments on commit d5335a0

Please sign in to comment.