vue-xlsx-table

View .xlsx file in browser for Vue2

Downloads in past

Stats

StarsIssuesVersionUpdatedCreatedSize
vue-xlsx-table
148131.2.85 years ago6 years agoMinified + gzip package size for vue-xlsx-table in KB

Readme

vue-xlsx-table
Not need upload, view xlsx or xls file in your browser, Supported by js-xlsx. Live Demo

npm version
中文文档

Requirements

  • vue: ^2.0.0

Usage

install

npm install vue-xlsx-table --save

main.js

import vueXlsxTable from 'vue-xlsx-table'
Vue.use(vueXlsxTable, {rABS: false}) //Browser FileReader API have two methods to read local file readAsBinaryString and readAsArrayBuffer, default rABS false

file.vue

<template>
  <div id="app">
    <h1>vue-xlsx-table</h1>
    <vue-xlsx-table @on-select-file="handleSelectedFile"></vue-xlsx-table>
  </div>
</template>

<script>
export default {
  name: 'app',
  methods: {
    handleSelectedFile (convertedData) {
      console.log(convertedData)
    }
  }
}
</script>

Develop

npm run dev  //develop
npm run build //production