Loading...
See More

{{value}} `, data: { value: 20 }, computed: { percentage () { return `${this.value}%` } }, methods: { onChange (val) { this.value = Math.round(val * 100) } } })