NightCatSama/vue-slider-component

Vue3 code example

devopg opened this issue · 1 comments

Can you show code example for vue 3 ?
i got unlimited error
image

npm install vue-slider-component@next --save

<template>
	<div>
		<vue-slider v-model="value"></vue-slider>
	</div>
</template>

<script>
import VueSlider from 'vue-slider-component';
import 'vue-slider-component/theme/default.css';

export default {
	components: {
		VueSlider,
	},
	data: function () {
		return {
			value: 0,
		};
	},
};
</script>

<style scoped>
</style>

Fixed in 4.0.0-beta.8