2020-05-28 10:32:57 -05:00
|
|
|
import Component from "@ember/component";
|
2019-12-13 10:41:14 +11:00
|
|
|
|
2020-05-28 10:32:57 -05:00
|
|
|
export default Component.extend({
|
2019-12-06 14:33:38 +11:00
|
|
|
actions: {
|
|
|
|
|
clickPlan(plan) {
|
2020-07-22 11:06:34 -05:00
|
|
|
this.set("selectedPlan", plan.id);
|
2019-12-06 14:33:38 +11:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
});
|