在某个断点处更改列顺序

时间:2020-03-18 16:11:27

标签: vuetify.js

我有2列,我想在移动设备上从左到右,从右到左更改他们的订单。 vuetify是否可以实现,并且如何实现?

1 个答案:

答案 0 :(得分:0)

<template v-slot:item v-if="mobileBreakPoint">
<tr>
<td>{{item.item2}}</td>
<td>{{item.item1}}</td>
</tr>
</template>

已在此处计算出设备是否可移动

mobileBreakPoint() {
  if (this.$vuetify.breakpoint.name == 'xs') {
      return true
  } else {
      return false
  }
}