You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
willaengine/resources/js/Global/mixins/commingSoon.js

26 lines
510 B

var CommingSoonArray = [
"document",
"discount",
"transaction",
"email",
"sms",
5 years ago
"prescription",
"crm-setting",
5 years ago
// "crm-client-filter",
"crm-statistics",
5 years ago
// "user-list-filter",
];
const commingSoon = {
methods: {
$_inCommingSoon(option) {
if(process.env.MIX_PUSHER_APP_PRODUCT == 'false' || !CommingSoonArray.includes(option)) {
return true;
}
return false;
}
}
};
export { commingSoon };