1. vue-handsontable
Table component for Vue
vue-handsontable
Package: vue-handsontable
Created by: vue-bulma
Last modified: Tue, 28 Jun 2022 19:35:53 GMT
Version: 0.0.2
License: MIT
Downloads: 30
Repository: https://github.com/vue-bulma/handsontable

Install

npm install vue-handsontable
yarn add vue-handsontable

Vue Handsontable

Table Companent for Vue

Installation

$ npm install vue-handsontable

Examples

<template>
  <cool-table :data="data" :settings="{}"></cool-table>
</template>

<script>
import CoolTable from 'vue-Handsontable'

export default {
  components: {
    CoolTable
  },

  data () {
    return {
      data: [
        ['', 'Kia', 'Nissan', 'Toyota', 'Honda'],
        ['2008', 10, 11, 12, 13],
        ['2009', 20, 11, 14, 13],
        ['2010', 30, 15, 12, 13]
      ]
    }
  }
}
</script>

Badges



fundon.me  · 
GitHub @fundon  · 
Twitter @_fundon

RELATED POST

Enhancing Vue.js Development: Harnessing the Potential of Vue-Loader

Enhancing Vue.js Development: Harnessing the Potential of Vue-Loader

Simplify Data Validation in Vue.js: A Step-by-Step Guide to Using Regex

Simplify Data Validation in Vue.js: A Step-by-Step Guide to Using Regex

Troubleshooting Made Easy: Common Issues and Solutions with vue-loader Without vue-cli

Troubleshooting Made Easy: Common Issues and Solutions with vue-loader Without vue-cli

Optimizing Webpack 4 with Vue CLI 3: Disabling the Cache-Loader

Optimizing Webpack 4 with Vue CLI 3: Disabling the Cache-Loader

Step-by-Step Guide: How to Add a Function to Your Vuex Plugin

Step-by-Step Guide: How to Add a Function to Your Vuex Plugin