UNPKG

@nocobase/plugin-action-import

Version:

Import records using excel templates. You can configure which fields to import and templates will be generated automatically.

19 lines (14 loc) 271 B
'use strict'; const XLSX = require('../xlsx/xlsx'); class ModelContainer { constructor(model) { this.model = model; } get xlsx() { if (!this._xlsx) { this._xlsx = new XLSX(this); } return this._xlsx; } } module.exports = ModelContainer;