Web Demo Mobile Demo Angular Demo Vue Demo React Demo
源代码
<template>
  <div>
    <h2>Basic Tabs</h2>
    <Tabs style="height:250px">
      <TabPanel :title="'Tab1'">
        <p>Tab Panel1</p>
      </TabPanel>
      <TabPanel :title="'Tab2'">
        <p>Tab Panel2</p>
      </TabPanel>
      <TabPanel :title="'Tab3'">
        <p>Tab Panel3</p>
      </TabPanel>
      <TabPanel :title="'Help'" :closable="true" iconCls="icon-help">
        <p>This is the help content.</p>
      </TabPanel>
    </Tabs>
  </div>
</template>

<script>
export default {};
</script>