Just writing a simple wrapper component to test your library. Get this error.
Using Vue 3, Vue-cli 4.5.7.
Should be super straight-forward. Code looks like:
```
<template>
<div class="checkbox-wrapper">
<ejs-checkbox id="checkbox" class="checkbox-wrapper"></ejs-checkbox>
</div>
</template>
<script>
import { CheckBoxComponent } from "@syncfusion/ej2-vue-buttons";
export default {
name: "CheckboxWrapper",
components: {
"ejs-checkbox": CheckBoxComponent,
},
};
</script>
```
I'll add that the lack of a definitive Vue 3 guide on your components is a real pain. Any plans to add one soon?