を動作しません私は温泉UI Vueのスワイプタブバーが
https://github.com/OnsenUI/vue-cordova-webpack
を開始するには、このテンプレートを使用して、私はそのOKタブバーを追加しますが、私は、コードIを実行したときにスワイプ属性は 動作しません。タブとその作業をクリックすることができますが、スワイプが
を動作しません、私のブラウザはここ
okですので、私は、温泉の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>
を与えるが、それでもスワイプdowsn仕事はしない –