patrickkunka / mixitup

A high-performance, dependency-free library for animated filtering, sorting, insertion, removal and more
https://www.kunkalabs.com/mixitup/
4.52k stars 734 forks source link

MixItUp Pagination not working with Vite JS #615

Open Toms15 opened 1 year ago

Toms15 commented 1 year ago

I have a modular JavaScript project with Laravel and Vite JS. I installed MixItUp via npm. Following the instructions on your site I added MixItUp Pagination:

import mixitup from 'mixitup'; // loaded from node_modules
import mixitupPagination from '../path/to/mixitup-pagination'; // loaded from a directory of your choice within your project
// Call the mixitup factory's .use() method, passing in the extension to install it
mixitup.use(mixitupPagination);

I get this error in the console: The requested module '/resources/js/modules/mixitup-pagination.js' does not provide an export named 'default'

If I change the import like this: import * as mixitupPagination from './mixitup-pagination'

I get this error in the console: Uncaught Error: [MixItUp Pagination] MixItUp core not found

How can I fix this and import MixItUp Pagination correctly?