1.0.10 • Published 10 months ago

vuetable-next v1.0.10

Weekly downloads
-
License
MIT
Repository
github
Last release
10 months ago

Vuetable-next

Simple table for displaying data!

Suitable for data visualization of any complexity with minimal time consumption.

🤸‍♀️Get started in 30 seconds

1. Install vuetable-next from:

npm install -D vuetable-next
# or
yarn add -D vuetable-next
# or
pnpm i -D vuetable-next

2. Initialize to the current project:

👦Vue 3

Global Registration

import Vuetable from "vuetable-next";
import { createApp } from "vue";

const app = createApp({...});
app.use(Vuetable);

Local Registration

<script setup lang="ts">
import Vuetable from "vuetable-next";
</script>

<template>
    <Vuetable
        ref="table"
        v-bind="{/* local props & attrs */}">
    </Vuetable>
<template>

Vue 2.6 & 2.7 is temporarily not supported

We're working on it. We will add support in a future release.

Also you have the ability to access certain components if you need them:

Vuetable: Vuetable.default/Vuetable.Vuetable,
VuetablePagination: Vuetable.VuetablePagination,
VuetablePaginationInfo: Vuetable.VuetablePaginationInfo,
VuetablePaginationDropdown: Vuetable.VuetablePaginationDropdown

Contributions

Any contribution to the code must be done to the next branch.

License

Vuetable is open-sourced software licensed under the MIT license.

1.0.10

10 months ago

1.0.9

10 months ago

1.0.8

10 months ago

1.0.7

10 months ago

1.0.6

10 months ago

1.0.5

10 months ago

1.0.4

10 months ago

1.0.3

10 months ago

1.0.2

10 months ago

1.0.1

10 months ago

1.0.0

10 months ago