support icon indicating copy to clipboard operation
support copied to clipboard

[VUE 3] Error using scheduler in Nuxt 3 with vite: Bryntum Grid bundle loaded multiple times

Open khattakdev opened this issue 9 months ago • 0 comments

Forem Post

It can also be reproduced in Vue-3 by adding the following code to app.vue.

<script setup>
import { BryntumScheduler } from "@bryntum/scheduler-vue-3";
</script>

<template>
  <BryntumScheduler />
</template>

It returns an import error: CleanShot 2024-05-09 at 14 54 02@2x

It can be fixed by changing the import path:

import { BryntumScheduler } from "./node_modules/@bryntum/scheduler-vue-3/index";

khattakdev avatar May 09 '24 09:05 khattakdev