import { Line, Circle } from '../index'; import '../assets/index.less'; export default { data() { return { percent: 30, color: '#3FC7FA', }; }, methods: { changeState() { const colorMap = ['#3FC7FA', '#85D262', '#FE8C6A']; const value = parseInt(Math.random() * 100, 10); this.percent = value; this.color = colorMap[parseInt(Math.random() * 3, 10)]; }, }, render() { const containerStyle = { width: '250px', }; const circleContainerStyle = { width: '250px', height: '250px', display: 'inline-block', }; return (