planosassessoria / vue-js-list

Simple and customizable Vue.js list.

Home Page:https://www.npmjs.com/package/vue-js-list

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

npm version npm

Vue.js List

Live demo here

Dark mode on:

list-dark

Standard:

list-standard

Install:

npm install vue-js-list

Use:

<template>
  <v-list :content="arrayOfContent" :titles="arrayOfTitles"/>
</template>

<script>
import VList from 'vue-js-list';
export default {
  data(){
    arrayOfContent: [ ["content1", "content2"], ["content3", "content4"], ],
    arrayOfTitles: ["title1", "title2"]
  },
  components: {
    VList,
  }
}
</script>

Prop

Name Type Required Description
content Array + Arrays inside of another array with your content
titles Array + All your titles
tableHeight [String, Number] - Height of all your table
columnsWidth [String, Number] - Width of each column
inputPlaceholder String - Search input placeholder
darkModeOn Boolean - Dark mode

About

Simple and customizable Vue.js list.

https://www.npmjs.com/package/vue-js-list


Languages

Language:JavaScript 53.0%Language:Vue 47.0%