Currently, I am delving into VueJs 3 with TypeScript and the composition API.
I stumbled upon a helpful tutorial on integrating the scheduler in VueJs.
However, it doesn't cover all aspects that apply to my specific situation, leading to some difficulties.
More precisely, I have encountered the following error message:
scheduler is not defined
In the mentioned tutorial comments, they suggest using:
/*global scheduler*/
import 'dhtmlx-scheduler'
Despite this, the scheduler remains inaccessible, triggering the error:
TS2304: Cannot find name 'scheduler'.
My IDE recommends importing it as follows:
import { scheduler } from 'dhtmlx-scheduler'
Yet, even after implementing this suggestion, the scheduler remains undefined.