Jason Wood:
Can a path action be run from a function or @click value? Or would I need to go through a named action?
Delfs:
Yeah since the path is basically changing the window location, you can do the same via JS
Delfs:
window.location.hash = “#/newHash”;
Jason Wood:
Perfect