Skip to content

Commit e213c98

Browse files
authored
Merge pull request #147 from eugenevdm/patch-3
Add missing event handlers
2 parents ea8ab1a + 58f1fa4 commit e213c98

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

demo-vue/app/examples/BottomNavigationBar.vue

+9-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,14 @@
88
<!-- <ns-first-tab *ngSwitchDefault></ns-first-tab> -->
99
<!-- <ns-third-tab *ngSwitchCase="2"></ns-third-tab> -->
1010
</StackLayout>
11-
<MDBottomNavigationBar row="1" activeColor="red" @loaded="onbottomNavigationBarLoaded">
11+
<MDBottomNavigationBar
12+
row="1"
13+
activeColor="red"
14+
@loaded="onbottomNavigationBarLoaded"
15+
@tabPressed="onBottomNavigationTabPressed"
16+
@tabSelected="onBottomNavigationTabSelected"
17+
@tabReselected="onBottomNavigationTabReselected"
18+
>
1219
<MDBottomNavigationTab title="First" icon="res://ic_home" activeColor="green"/>
1320
<MDBottomNavigationTab title="Second" icon="res://ic_view_list" isSelectable="false" />
1421
<MDBottomNavigationTab title="Third" icon="res://ic_menu" inactiveColor="brown"/>
@@ -59,4 +66,4 @@ export default Vue.extend({
5966
}
6067
}
6168
});
62-
</script>
69+
</script>

0 commit comments

Comments
 (0)