I\'m using vue.js 2.0 I\'ve got this method:
vue.js 2.0
calculatePercentage(option) { let totalVotes = 0; this.poll.options.forEach((option) => {
You can bind inline style to vue data as explained here. All you need to do is return values from calculatePercentage and use it in style like following:
calculatePercentage
{{ option.name }}{{ calculatePercentage(option) }}%