只需3 分鐘,就能建立 一個SpreadJS 的 Vue 項目

概述

SpreadJS純前端表格控件 V11.2(SP2)版本已經全面支持了Vue拓展,下面咱們看下如何配合VUE CLI,只需3分鐘快速構建一個SpreadJS Vue工程。css

安裝vue-cli(耗時30S)

經過命令```npm install -g @vue/cli ```安裝(cli.vuejs.org/前端

建立vue-spreadjs工程(耗時1Min)

請根據項目需求配置工程選項:vue

經過npm install 或者在package.json中添加引用的方式安裝spread.sheets(耗時20S)

"@grapecity/spread-excelio": "^11.2.3",
"@grapecity/spread-sheets": "^11.2.3",
"@grapecity/spread-sheets-print": "^11.2.3",
"@grapecity/spread-sheets-resources-zh": "^11.2.3",
"@grapecity/spread-sheets-vue": "^11.2.3",

修改router/index.js爲spreadJS頁面添加router(耗時30S)

routes: [
{
path: '/',
name: 'HelloWorld',
component: HelloWorld
},
{
path: '/spreadjs',
name: 'spreadJS',
component: SpreadJS
}
]

新建SpreadJS Component(耗時30S)

請在 components 下添加SpreadJS.vue文件vue-cli

template 內容:npm

<template>
<div>
<h1>Spread.Sheets</h1>
<div>
<input type='file' @change="processFile($event)"/>
<button @click="importExcel">導入</button>
<button @click="exportExcel">導出</button>
<button @click="printWorkbook">打印</button>
</div>
<div style="text-align: left">
<gc-spread-sheets
hostClass='spread-host'
@workbookInitialized = 'workbookInitialized($event)'>
<gc-worksheet>
</gc-worksheet>
</gc-spread-sheets>
</div>
</div>
</template>

Style內容:json

<style>
.spread-host {
width: 100%;
height: 400px;
border: 1px solid black;
}
</style>

Script內容:瀏覽器

<script>
/* eslint-disable */
import "@grapecity/spread-sheets/styles/gc.spread.sheets.excel2016colorful.css";
import GC from "@grapecity/spread-sheets";
import "@grapecity/spread-sheets-vue";
import "@grapecity/spread-sheets-resources-zh";
import ExcelIO from "@grapecity/spread-excelio";
import FaverSaver from "file-saver";
import "@grapecity/spread-sheets-print";
GC.Spread.Common.CultureManager.culture("zh-cn");
GC.Spread.Sheets.LicenseKey = ExcelIO.LicenseKey = "your key"
export default {
methods: {
processFile (event) {
this.excelFile = event.target.files[0];
},
importExcel () {
var excelIO = new ExcelIO.IO();
console.log(excelIO);
var self = this;
excelIO.open(this.excelFile, function(json) {
self.spread.fromJSON(json);
console.log(json);
});
},
exportExcel () {
var excelIO = new ExcelIO.IO();
var json = this.spread.toJSON();
excelIO.save(
json,
function(blob) {
FaverSaver.saveAs(blob, "export.xlsx");
},
function(e) {
console.log(e);
}
);
},
printWorkbook (){
this.spread.print();
},
workbookInitialized(spread) {
this.spread = spread;
spread.refresh();
}
}
}
</script>

workbookInitialized是spread初始化完成後的回調事件,咱們能夠在事件中獲得初始化好的workbook對象。app

部署受權須要同時給Sheets和ExcelIO同時添加,部署受權能夠在全局config中配置。ide

運行項目(耗時10S)

建立 npm install 依賴後,便可經過npm start啓動項目工具

瀏覽器訪問 http://localhost:8081/#/spreadjs 查看效果。

只需3分鐘,一個SpreadJS 的Vue項目就建立完成了,固然純前端表格控件SpreadJS的強大不只於此,去實際試用感覺一下吧

擴展閱讀

這篇文章,講述的是《3分鐘建立 SpreadJS 的 React 項目》,須要的同窗請深刻了解。

純前端表格控件SpreadJS,是市面上佈局與功能都與 Excel 高度相似的一款表格控件,全中文操做界面,適用於.NET、Java、移動端等多個平臺的類 Excel 數據開發,備受華爲、海信、立信、中國平安、中國能建、中通快遞、金麒麟和北京神軟等客戶青睞。

關於葡萄城

賦能開發者!葡萄城公司成立於 1980 年,是全球領先的集開發工具、商業智能解決方案、管理系統設計工具於一身的軟件和服務提供商。西安葡萄城是其在中國的分支機構,面向全球市場提供軟件研發服務,併爲中國企業的信息化提供國際先進的開發工具、軟件和研發諮詢服務。葡萄城的控件和軟件產品在國內外屢獲殊榮,在全球被數十萬家企業、學校和政府機構普遍應用。

相關文章
相關標籤/搜索