ProgressNS / nativescript-ui-feedback

This repository is used for customer feedback regarding Telerik UI for NativeScript. The issues system here is used by customers who want to submit their feature requests or vote for existing ones.
Other
115 stars 21 forks source link

RadListView Vue plugin doesn't register ReorderHandle component #1423

Open pietdevries94 opened 4 years ago

pietdevries94 commented 4 years ago

The RadListView Vue plugin doesn't register the ReorderHandle component. Currently I use the following code to make it work.

import RadListView from "nativescript-ui-listview/vue";
import { ReorderHandle } from "nativescript-ui-listview";

Vue.use(RadListView);
Vue.registerElement("ReorderHandle", function () {
  return ReorderHandle;
});