• Introduction
  • Getting Started
  • Vue 2 End of Support
  • Native Components
    • Animation
    • Buttons
    • Chartsupdated
    • Conversational UInew
    • Data Query
    • Data Tools
    • Date Inputs
    • Date Math
    • Dialogs
    • Drawing
    • Dropdownsupdated
    • Editor
    • Excel Export
    • File Saver
    • Form
    • Gauges
    • Grid
    • Icons
    • Indicators
    • Inputs
    • Labels
    • Layoutupdated
    • ListBox
    • ListView
    • Notification
    • PDF Processing
    • Popup
    • Progress Bars
    • Scheduler
    • ScrollView
    • Tooltip
    • TreeList
    • TreeView
    • Upload
  • Wrapper Components
  • Sample Applications
  • Styling & Themes
  • Common Features
  • Project Setup
  • Knowledge Base
  • Changelog
  • FAQ
  • Troubleshooting

Getting Started with the Kendo UI File Saver

This guide provides the information you need to start using the Kendo UI File Saver—it includes instructions about the installation approach, how to import the required methods, and links to additional resources.

The File Saver Package is part of Kendo UI for Vue, a professional grade UI library with 100+ components for building modern and feature-rich applications. To try it out sign up for a free 30-day trial.

Installing the Package

To add the Kendo UI File Saver package, run the following command:

npm install --save @progress/kendo-file-saver

Using the Package

  1. After successfully installing the File Saver, import the required individual functions from the package:

    import { saveAs, encodeBase64 } from '@progress/kendo-file-saver';
  2. Then you can save a file on the client machine, by using the saveAs method, and pass a valid data URI and a file name:

    const dataURI = "data:text/plain;base64," + encodeBase64("Hello World!");
    saveAs(dataURI, "test.txt");

Dependencies

The Kendo UI File Saver package has no external dependencies.

Next Steps