Ghost/ghost/admin/app/components/gh-products-price-billingperiod.js

13 lines
280 B
JavaScript
Raw Normal View History

import Component from '@ember/component';
const PERIODS = [
{label: 'Monthly', period: 'monthly'},
{label: 'Yearly', period: 'yearly'}
];
export default Component.extend({
init() {
this._super(...arguments);
this.availablePeriods = PERIODS;
}
});