// mixins.js export const activeMuen = (ak, vk) => { let status = false if (ak && vk) { status = `${ak}`.indexOf(vk) === 0; } return status };