Hi Daniel Walker,
We suspect that the issue
you're encountering might be related to the use of runtime-only template
elements, such as those created using createApp. By default, Vite does
not support inline templates, and if they're being used in your application,
this could lead to warnings or cause the sample to not function as expected.
To address this, one potential solution is to configure an
alias in your vite.config.js file. Here's an example configuration that
might help:
[vite.config.js]
|
export default defineConfig({
plugins: [vue()],
resolve: {
alias: {
vue: 'vue/dist/vue.esm-bundler.js'
}
}
})
|
Documentation : https://ej2.syncfusion.com/vue/documentation/common/template
Could you please try implementing this on your end and see if it resolves the
issue? Let us know if the problem persists, and we can explore further.