SpreadJS 15.2.3 黄金十月美好版

SpreadJS Overview--破解版网上轻松找到
SpreadJS is the most comprehensive spreadsheet solution for enterprise JavaScript development.

SpreadJS 15.2.3 黄金十月美好版_第1张图片

 

It combines grid capabilities and spreadsheet functionality to offer a complete Excel-like experience, including tables, charts, shapes, sparklines, high-speed calculation engine, conditional formatting, sorting and filtering along with extensive support for importing and exporting native Excel spreadsheets with no Excel dependencies. Some exclusive features like barcodes, rich text, cell buttons, cell dropdowns and range templates are also provided to assist developers in creating flawless JavaScript applications.

SpreadJS 15.2.3 黄金十月美好版_第2张图片

 

Use the SpreadJS widget to create and manage spreadsheets, advanced data grids, interactive dashboards, analytical charts, business intelligence reports, well-defined data entry forms and much more.

SpreadJS 15.2.3 黄金十月美好版_第3张图片

 

Microsoft and Excel are either registered trademarks or trademarks of Microsoft Corporation in the United States and/or other countries. Other brand and product names are trademarks or registered trademarks of their respective holders.

SpreadJS 15.2.3 黄金十月美好版_第4张图片

 

SpreadJS with Vue

SpreadJS supports Vue - a JavaScript framework that provides developers with distinct tools to help them build complex user interfaces and web applications.

Using Node Package Manager

Vue 3

  1. Create a Vue Project

    Open the command prompt window and type the following commands to create a simple Vue project.

    npm install -g @vue/cli
    vue create spreadjs-quickstart :: Here, select Vue 3.
    cd spreadjs-quickstart
    npm run serve

    After you finish, the Vue project will be created at the specified location in the directory. For more information on how to create a Vue project, refer to Quick Start | Vue.js.

  2. Import SpreadJS Vue Module in Project

    Install SpreadJS Vue modules in your project using the following command:

    npm install @grapecity/spread-sheets-vue
    npm install @grapecity/spread-sheets
  3. Use SpreadJS in Vue application

    Modify the main.js file by using the sample code given below:

    import { createApp } from 'vue'
    import App from './App.vue'
    import { GcSpreadSheets, GcWorksheet, GcColumn } from '@grapecity/spread-sheets-vue'
    
    let app = createApp(App);
    app.component('gc-spread-sheets', GcSpreadSheets);
    app.component('gc-worksheet', GcWorksheet);
    app.component('gc-column', GcColumn);
    app.mount("#app");

    Modify the App.vue file by using the sample code given below:

    
    
    
    
    
  4. Save and Run the Application

    npm run serve

Vue 2

  1. Create a Vue Project

    Open the command prompt window and type the following commands to create a simple Vue project.

    npm install -g @vue/cli
    npm i -g @vue/cli-init
    vue init webpack spreadjs-quickstart :: Here, select Vue 2.
    cd spreadjs-quickstart
    npm run dev 

    After you finish, the Vue project will be created at the specified location in the directory. For more information on how to create a Vue project, refer to Installation — Vue.js.

  2. Import SpreadJS Vue Module in Project

    Install @grapecity/spread-sheets-vue in your project using the following command:

    npm install @grapecity/spread-sheets-vue
  3. Use SpreadJS in Vue application

    Modify the App.vue file as per your requirements. Changes will be reflected when the browser window is refreshed. As an example, you can use the sample code given below:

    
    
    
  4. Save and Run the Application

    npm run dev

Using Traditional HTML

Vue 2

SpreadJS can be used with Vue 2 using traditional HTML. This method involves the following steps:

  1. Create a HTML page

    As the first step, you need to create an HTML page.

  2. Add SpreadJS and Vue-SpreadJS to HTML template

Add references to the gc.spread.sheets.all.*.*.*.min.jsgc.SpreadJS.*.*.*.css and gc.spread.sheets.vue.*.*.*.js files in the HTML template (i.e. your index.html file).

  1. Use SpreadJS in Vue application

    Now, you can use SpreadJS in your Vue application. As an example, you can use the sample code given below:

    
    
    
        
        Hello SpreadJS Vue
        
        
    
    
    

    The SpreadSheets, Worksheet, and Column are the basic elements of tag hierarchy. Other elements work by setting them. The main tag hierarchy is:

    
    
    
        ...
    
      ...
    

你可能感兴趣的:(SpreadJS,15.2.3)