前端那些事20231218-关于table中加入按钮的方式

发布时间:2024年01月11日
   <avue-crud
      class="avue-affixed avue-new-table"
      ref="crud"
      :option="tableOption"
      :table-loading="listLoading"
      :data="tableData"
      :page.sync="page"
      @current-change="currentChange"
      @size-change="sizeChange"
      @search-change="searchChange"
      @filter-change="filterChange"
      @selection-change="selectionChange"
    >
      <template slot-scope="{ row }" slot="inspectionProcess">
        <el-link>明细</el-link>
      </template>
      <template slot-scope="{ row }" slot="documentationRequirement">
        <el-link>下载</el-link>
      </template>
      <template slot-scope="scope" slot="menu">
        <table-column-btns :btns="tableBtns" :scope="scope"></table-column-btns>
      </template>
    </avue-crud>

运行结果

文章来源:https://blog.csdn.net/qq_41632427/article/details/135064523
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。