I'm trying out vuejs by following along with the laracasts series of webcasts on this. In , Jeffery Way has put the code in the / .
The initial setting is shown in the screenshot, before any plan is selected. I would like to set a default value in the button of "please select " (instead of "Downgrade") The button code is:
<span v-else>
<button @click="setActivePlan">
{{ isUpgrade ? 'Upgrade' : 'Downgrade' }}
</button>
How can I do this?
I'm trying out vuejs by following along with the laracasts series of webcasts on this. In https://laracasts./series/learning-vue-step-by-step/episodes/6, Jeffery Way has put the code in the http://jsfiddle/d4f27e5p/ .
The initial setting is shown in the screenshot, before any plan is selected. I would like to set a default value in the button of "please select " (instead of "Downgrade") The button code is:
<span v-else>
<button @click="setActivePlan">
{{ isUpgrade ? 'Upgrade' : 'Downgrade' }}
</button>
How can I do this?
Share Improve this question edited Jan 11, 2016 at 16:56 user1592380 asked Jan 11, 2016 at 16:35 user1592380user1592380 36.4k105 gold badges312 silver badges551 bronze badges1 Answer
Reset to default 5How about adding a puted property for the button text that includes the additional logic? Something like this:
buttonText: function() {
if(!this.active.name)
return "Please Select";
return this.isUpgrade ? 'Upgrade' : 'Downgrade';
}
Then the button would use this:
<span v-else>
<button @click="setActivePlan">
{{ buttonText }}
</button>
</span>
Here's an updated jsfiddle.