1.0.11 • Published 5 years ago

nerio-vuetify-table v1.0.11

Weekly downloads
-
License
MIT
Repository
-
Last release
5 years ago

Vuetify table

npm i nerio-vuetify-table -S

Usage

import VuetifyTable from 'nerio-vuetify-table'
Vue.use(VuetifyTable)
<template>
 <vuetify-table :headers="headers"></vuetify-table>
</template>
<script >

export default {
    data(){
        return {
            headers: [
                {
                    text: 'Name', // Display header
                    value: 'name', // Display item key
                }
            ],
            actions: [
                {
                    text: 'Edit',
                    click: item => console.log(item)
                }
            ]
        }
    }
}
</script>

Props

headers table columns configs

1.0.11

5 years ago

1.0.10

6 years ago

1.0.9

6 years ago

1.0.8

6 years ago

1.0.7

6 years ago

1.0.6

6 years ago

1.0.5

6 years ago

1.0.4

6 years ago

1.0.3

6 years ago

1.0.2

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago