[vue3.x] data property not functioning properly
theonlyladybug opened this issue · 2 comments
theonlyladybug commented
你好,我用如下例子,并不能显示出正确的字母:
<template>
<div id='wrapper'>
<vue-slider v-model="value" :data="data" tooltip="hover" :marks="true"></vue-slider>
</div>
</template>
data() {
return {
value: 'A',
data: ['A', 'B', 'C', 'D']
}
},
其原因可能和这一行code有关vue-slider.tsx。
将:data
改为:v-data
确实可以修复bug,但其行为和文档中所述不符。
Environment
- OS & Version: [Linux]
- Vue 3
- Component Version: [v4.0.0-beta.3]
NightCatSama commented
theonlyladybug commented
看到了,谢谢