Onsen UI Vue可滑动Tabbar不起作用

时间:2017-10-09 10:17:47

标签: javascript cordova vue.js vuejs2 onsen-ui

我用这个模板开始

https://github.com/OnsenUI/vue-cordova-webpack

然后我添加了一个tabbar,但是可滑动的属性不起作用 当我运行代码时,我可以单击选项卡及其工作,但滑动不起作用

我可以在温泉ui演示中滑动,这样我的浏览器就可以了

这是我的Tabbar组件

<template>
  <v-ons-page>
    <v-ons-toolbar>
      <div class="center">{{ title }}</div>
    </v-ons-toolbar>

    <v-ons-tabbar
      swipeable position="auto"
      :tabs="tabs"
      :visible="true"
      :index.sync="activeIndex"
    >
    </v-ons-tabbar>
  </v-ons-page>
</template>


<script>
import Dashboard from './components/dashboard.vue';
import Diary from './components/diary.vue';

export default {
  data () {
    return {
      activeIndex: 0,
      tabs: [
        {
          label: 'dash',
          page: Dashboard,
          icon: this.md() ? null : 'ion-ios-settings',
          key: "Dashboard"
        },
        {
          label: 'diar',
          page: Diary,
          icon: this.md() ? null : 'ion-ios-settings',
          key: "Diary"
        }
      ]
    };
  },
  methods: {
    md() {
      return this.$ons.platform.isAndroid();
    }
  },
  computed: {
    title() {
      return this.tabs[this.activeIndex].label;
    }
  }
};
</script>

2 个答案:

答案 0 :(得分:1)

确保您至少使用onsenui@2.6.0vue-onsenui@2.2.0。更改日志here。如果可能,只需更新到最新版本。检查package.json文件并更改版本号,如果您使用的是yarn,只需运行yarn upgrade onsenui vue-onsenui

答案 1 :(得分:0)

当我在tabbar对象上推送attr动画时 它解决了问题

 <v-ons-tabbar
   position="auto"
   animation="fade"
   swipeable 
  :tabs="tabs"
  :visible="true"
  :index.sync="activeIndex"
>
</v-ons-tabbar>

Fran Dios在其他社区帮助我这样做,所以我给予奖励