export default function owner(to, from, next) { const role = localStorage.getItem("role") if (role !== "owner") { next({ name: "Kasir" }) } else { next() } }