Vue3 ComboBoxComponent not working as GridComponent in Getting Started Vue3 tutorial sample

Hi!,

I'm trying to use ComboBoxComponent (or any included in ej2-vue-dropdowns) with no luck. I'm trying to include the component in the same way that the grid is declared in the Getting Started sample:

<template>
<div>
  <ejs-grid :dataSource='data'>
      <e-columns>
          <e-column field='OrderID' headerText='Order ID' textAlign='Right' :isPrimaryKey='true'
          width=100></e-column>
          <e-column field='CustomerID' headerText='Customer ID' width=120></e-column>
          <e-column field='ShipCountry' headerText='Ship Country' width=150></e-column>
      </e-columns>
  </ejs-grid>
  <ejs-combobox id='combobox' :dataSource='sportsData'></ejs-combobox>
</div>
</template>
<script>
import {
  GridComponentColumnsDirectiveColumnDirectiveEditToolbar,
from '@syncfusion/ej2-vue-grids';
import { ComboBoxComponent } from '@syncfusion/ej2-vue-dropdowns';

export default {
  name: 'Vue3-App',
  // Declaring component and its directives
  components: {
    'ejs-grid': GridComponent,
    'e-columns': ColumnsDirective,
    'e-column': ColumnDirective,
    'ejs-combobox': ComboBoxComponent,
  },

...

 but I'm receiving the following error:


How should I use dropdowns in Vue3?

Thanks for your help!


Attachment: src_1425ca38.zip

2 Replies

SN Sevvandhi Nagulan Syncfusion Team July 9, 2021 01:31 PM UTC

Hi Alberto, 


Greetings from Syncfusion support. 


We checked your query. We are currently checking the reported issue at our end and we will update the details on 13th of July,2021. We appreciate your patience until then. 


Regards, 
Sevvandhi N 



PM Ponmani Murugaiyan Syncfusion Team July 13, 2021 02:36 PM UTC

Hi Alberto, 

Thanks for your patience. 

We have resolved the reported error “createElement is not a function” in the today’s weekly patch release (19.2.47). So, we suggest you to upgrade the Syncfusion Dropdown package version to the latest to resolve the reported issue in your end. 

Please get back us if you need further assistance. 

Regards, 
Ponmani M 


Loader.
Up arrow icon