Kendo-UI-Library-Installation-version-2.0
  • Introduction
  • Kendo UI Library
  • Library Installation
    • General comments
    • Simple (via script tags)
    • Custom Library
    • Advanced (via module loader)
      • JSPM
      • Webpack
      • Aurelia CLI
  • Kendo UI Bridge Plugin
  • Bridge Installation
    • Webpack
      • JavascriptServices
      • Skeleton
    • Aurelia CLI
    • JSPM
  • Next Steps
Powered by GitBook
On this page
  • JSPM
  • Important
  1. Bridge Installation

JSPM

PreviousAurelia CLINextNext Steps

Last updated 7 years ago

Bridge Installation

  1. run jspm install aurelia-kendoui-bridge

  2. open main.js and register the plugin:

     export function configure(aurelia) {
       aurelia.use
         .standardConfiguration()
         .developmentLogging()
         .plugin('aurelia-kendoui-bridge');
    
       aurelia.start().then(a => a.setRoot());
     }

Important

It is strongly recommended to continue with the page

getting started
JSPM