[Vuejs]-How to read [object Object] in RadListView using NativeScript-vue

0👍

RadListView has out of the box support for Vue, you are not suppose the register the element but use the Vue plugin.

import RadListView from 'nativescript-ui-listview/vue';
Vue.use(RadListView);

Updated Playground

Leave a comment