aw-studio / fjord-csv
Import/Export CSV-Data of your CRUD-Models
Installs: 5
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 0
Language:Vue
Requires
- maatwebsite/excel: ^3.1
This package is auto-updated.
Last update: 2024-11-15 02:24:01 UTC
README
Import/Export CSV-Data of your CRUD-Models
Install
Install the package via composer:
composer require aw-studio/fjord-csv
You have to install the node package via npm:
npm i vendor/aw-studio/fjord-csv
In order to extend your Fjord-application, follow the instructions in the fjord documentation about extending the Fjord Vue application.
Require the package in your app.js
file:
import Fjord from "fjord"; require('fjord-csv') const store = {}; new Fjord({ store });
Include the compiled version of your app.js
file in your config/fjord.php
file
return [ ... 'assets' => [ // Set path to the app.js file. 'js' => '/path/to/compiled/app.js', ], ... ];