标签:html script 实现 rgb min imp wip lib pre
参考 https://python.ctolib.com/328921371-ruler.html
法一
cs-ruler 插件 npm install cs-ruler <template> <div> <cs-ruler @post-NumValue="rulerNum" :NowNum=‘100‘ :maxNum=‘500‘ :minNum=‘0‘></cs-ruler> </div> </template> <script> import Vue from ‘vue‘ import CsRuler from ‘cs-ruler‘ Vue.use(CsRuler) export default { methods: { //子组件传递刻度表 rulerNum(value){ this.NumValue = value } } } </script>
法二(只提供思路)
vue-awesome-swiper 组件自己封装实现
自行百度
标签:html script 实现 rgb min imp wip lib pre
原文地址:https://www.cnblogs.com/-roc/p/14754162.html