Closed tomikaka22 closed 2 months ago
The component seems to function correctly once the project is built, however it is buggy when using the dev server.
Steps to reproduce: Create a SvelteKit project, and use the slider component like this:
<mdui-slider min="40" max="85"></mdui-slider>
run npm run dev
npm run dev
Upon further use, I can confirm that it remains broken even after building.
min and max are of number type, you should use them like this <mdui-slider min="{40}" max="{85}"></mdui-slider>
min
max
<mdui-slider min="{40}" max="{85}"></mdui-slider>
The component seems to function correctly once the project is built, however it is buggy when using the dev server.
Steps to reproduce: Create a SvelteKit project, and use the slider component like this:
<mdui-slider min="40" max="85"></mdui-slider>
run
npm run dev