Skip to content

brunolara/vue-table-dynamic-with-slot

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

55 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

vue-table-dynamic-with-slot

This repo is a modification of original with slot capability.
Example:

<vue-table-dynamic-with-slot :params="params" @select="onRowChecked" @select-all="onAllRowChecked" ref="table">
  <template slot-scope="param" slot="column" v-if="param.table.rowIndex == 10 && param.table.index > 0">
    <span class="edit-icons">
      <h3>{{param.table.data}}</h3>
    </span>
  </template>
  <template slot-scope="param" slot="column" v-else>
    {{ param.table.data }}
  </template>
</vue-table-dynamic-with-slot>

About

🎉 A dynamic table with sorting, filtering, editing, pagination, multiple select, etc.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Vue 82.3%
  • JavaScript 10.2%
  • CSS 7.0%
  • HTML 0.5%