Files
discourse-subscriptions/assets/javascripts/discourse/components/payment-options.js.es6
T

10 lines
167 B
JavaScript
Raw Normal View History

import Component from "@ember/component";
export default Component.extend({
2019-12-06 14:33:38 +11:00
actions: {
clickPlan(plan) {
this.set("selectedPlan", plan.id);
2019-12-06 14:33:38 +11:00
}
}
});