Giter Club home page Giter Club logo

vue-fantastic-table's Introduction

Vue Fantastic Table

A great vue table with material design and all the power of jquery datatables features.

Install

npm i vue-fantastic-table

Usage

import VueFantasticTable from "vue-fantastic-table"

Vue.component("vue-fantastic-table", VueFantasticTable)

Features


Responsive mode

Similar to the responsive mode of jquery datatables. When the screen is small VFT hide columns but when is large VFT show columns.

To use it just add the prop "responsive".

<vue-fantastic-table responsive :headers="headers" :rows="rows" />

Server mode

The rows prop has 2 modes. You can pass an array or a function. If you pass a function VFT will take that as a promise that return an array of objects.

 <vue-fantastic-table :headers="headers" :rows="callRequest" />
 ...
 callRequest: function () {
      return new Promise((resolve, reject) => {
        setTimeout(() => {
          resolve(this.rows);
        }, 1100);
      });
    },

While the data is being loaded VFT will show a default message "loading..." You can customize this message with the slot "loading".

<vue-fantastic-table responsive :headers="headers" :rows="callRequest">
      <template #loading>
        <div>Your custom component or message</div>
      </template>
    </vue-fantastic-table>

Dark Theme

You can use a dark theme of VFT using the prop "dark":

<vue-fantastic-table dark responsive :headers="headers" :rows="callRequest" />

Custom slots

You can change the content that is displayed for each cell in the body. Only need to use slots with the name of the field that you set in headers prop.

Example:

<vue-fantastic-table
      :headers="headers"
      :rows="callRequest"
      class="dark"
      responsive
    >
      <template #university="{ name, university }">
        <div>{{ name + " studies in " + university }}</div>
      </template>
</vue-fantastic-table>
...
headers: [
      { field: "name", label: "Name" },
      { field: "age", label: "Age" },
      { field: "sex", label: "Sex" },
      { field: "district", label: "District" },
      { field: "university", label: "University" },
      { field: "carrer", label: "Carrer" },
      { field: "job", label: "Job" },
      { field: "experience", label: "Experience" },
      { field: "investor", label: "Investor" },
    ],
rows: [
      {
        name: "Renatto",
        age: 26,
        sex: "M",
        district: "La Perla",
        university: "UNFV",
        carrer: "Ing. Informatica",
        job: "Software Developer",
        experience: 2,
        investor: "Yes",
      },
    ],
...

Search

You can add the prop "search". That will add a search input at the top of VFT.

<vue-fantastic-table
      :headers="headers"
      :rows="callRequest"
      dark
      responsive
      search
    />

Header and Footer Search

You can add search inputs for each header and for each footer. Only need to add these props "headerSearch" and "footerSearch".

<vue-fantastic-table
    :headers="headers"
    :rows="callRequest"
    dark
    footerSearch
    headerSearch
/>

Alt text

vue-fantastic-table's People

Stargazers

 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.