1.0.11 • Published 6 years ago

nerio-vuetify-table v1.0.11

Weekly downloads
-
License
MIT
Repository
-
Last release
6 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

6 years ago

1.0.10

7 years ago

1.0.9

7 years ago

1.0.8

7 years ago

1.0.7

7 years ago

1.0.6

7 years ago

1.0.5

7 years ago

1.0.4

7 years ago

1.0.3

7 years ago

1.0.2

7 years ago

1.0.1

7 years ago

1.0.0

7 years ago