Skip to content

Latest commit

 

History

History
66 lines (45 loc) · 1.58 KB

File metadata and controls

66 lines (45 loc) · 1.58 KB
title page_title description slug position category
Troubleshooting
Troubleshooting - Kendo UI for Vue Wrappers
Learn about the issues that may occur when using the Kendo UI for Vue Wrappers.
troubleshooting_newsite
960
troubleshooting

Troubleshooting

This article provides solutions for issues you might encounter while working with the Kendo UI suite for Vue.

Browsers Support

I would like to enable IE 11 support for my Vue app

Cause

Internet Explorer 11 does not offer support for ECMAScript 2015 (ES 6). Therefore, it could not load properly any ES 6 modules.

Solution

You will need to install the babel-polyfill package:

npm install --save "babel-polyfill"

And import in the Vue app:

import 'babel-polyfill'

Vue Specific Syntax

How should I attach the event handlers for the widgets. Using kebab-case does not work e.g.: v-on:data-bound

Cause

The Vue framework imposes a limitation on the custom event emitted in Vue.

Solution

Lower case should be used instead:

<kendo-grid :data-source="localDataSource"
            v-on:databound="onDataBound">
</kendo-grid>

or:

<kendo-grid :data-source="localDataSource"
            @databound="onDataBound">
</kendo-grid>

Suggested Links