# Tabbar Bottom navigation bar, used for switching between different pages. ## Basic Usage `v-model` is the binding value, representing the index value or name of the selected tab. ```html ``` ```typescript import { ref } from 'vue' const tabbar = ref(1) ``` ## Match by Name By setting the `name` property, you can match the selected tab by name. ```html ``` ```typescript import { ref } from 'vue' const tabbar = ref('home') ``` ## Badge Tips By setting the `value` property, you can display badge tips, and by setting the is-dot property, a small red dot will be displayed in the upper right corner of the icon. ```html ``` ```typescript import { ref } from 'vue' const tabbar = ref(1) ``` ## Floating Tab Bar By setting the `shape` property to `round`, you can set the tab bar to floating style. ```html ``` ```typescript import { ref } from 'vue' const tabbar = ref(1) ``` ## Custom Icon By using `