initialising materiliaze-css with M.AutoInit() I receive: "Cannot read property 'classList' of undefined".
Same result if I select and initialise the single element (that exists) and component:
const tabBars = document.querySelectorAll('.tabs')
tabBars.forEach((element) => {
M.Tabs.init(element)
})
the same for
const tabBar = document.querySelector('.tabs')
M.Tabs.init(tabBar)
Any idea? Thanks.