Welcome to the Vue feedback portal. We’re happy you’re here! If you have feedback on how to improve the Vue, we’d love to hear it!>
Thanks for joining our community and helping improve Syncfusion products!
ItemTemplates are broken for all controls that inherit from DropDownBase.
Your Template engine is no longer parsing component templates. The template engine expects a string template by the time it is called, but list-base.js is still passing down the bound component function.
//from line 451 in list-base.js
function renderContentTemplate(createElement, template, dataSource, fields, options) {
cssClass = getModuleClass(defaultListBaseOptions.moduleName);
var ulElement = createElement('ul', { className: cssClass.ul, attrs: { role: 'presentation' } });
var curOpt = extend({}, defaultListBaseOptions, options);
var curFields = extend({}, ListBase.defaultMappedFields, fields);
var compiledString = compile(template); <-- this is not a string when using an itemTemplate