Link:
http://element-cn.eleme.io/-sharp/.
Today, take a look at the tab component of elment-ui. The
sample code is as follows:
<template>
<el-tabs v-model="activeName" @tab-click="handleClick">
<el-tab-pane label="" name="first"></el-tab-pane>
<el-tab-pane label="" name="second"></el-tab-pane>
<el-tab-pane label="" name="third"></el-tab-pane>
<el-tab-pane label="" name="fourth"></el-tab-pane>
</el-tabs>
</template>
Interface effect:
tabdomcontent:
el-tabs__content this class should be generated in the element-ui source code. What should I do if I want to customize the content of the tab page? Thank you