{
  "name": "@bootstrap-vue/tabs",
  "version": "1.0.0",
  "meta": {
    "title": "Tabs",
    "enhanced": true,
    "description": "Create a widget of tabbable panes of local content. The tabs component is built upon navs and cards internally, and provides full keyboard navigation control of the tabs.",
    "components": [
      {
        "component": "BTabs",
        "events": [
          {
            "event": "input",
            "description": "Emits when a tab is shown. Used to update the v-model",
            "args": [
              {
                "arg": "tabIndex",
                "description": "Current selected tab index (0-based index)"
              }
            ]
          }
        ],
        "slots": [
          {
            "name": "tabs",
            "description": "Additional tab buttons without tab content"
          },
          {
            "name": "empty",
            "description": "Renders this slot if no tabs are present"
          }
        ]
      },
      {
        "component": "BTab",
        "events": [
          {
            "event": "click",
            "description": "Emitted when a tab is clicked, or is activated by keyboard navigation",
            "args": [
              {
                "arg": "evt",
                "description": "Original event object"
              }
            ]
          }
        ],
        "slots": [
          {
            "name": "title",
            "description": "Slot for custom tab title"
          }
        ]
      }
    ]
  }
}
