vuetable-next
v1.0.10
Published
Simple table for displaying data.
Downloads
13
Maintainers
Readme
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.