样式class:
静态选择器
数组
对象
- class数组写法:
```html
<image class="logo" src="/static/logo.png"></image> <view class="text-area"> <text class="title">{{title}}</text> </view>
- class对象写法:```html<view :class="{'content':content}"><image class="logo" src="/static/logo.png"></image><view class="text-area"><text class="title">{{title}}</text></view></view><script>export default {data() {return {title: 'Hello',content:true,backagound:'backagound'}},methods: {}}</script>
style
同样有三种方法:
- 对象
- 数组
- 静态绑定
