(name, params, absolute, config)
| 1 | import Router from './Router.js'; |
| 2 | |
| 3 | export function route(name, params, absolute, config) { |
| 4 | const router = new Router(name, params, absolute, config); |
| 5 | |
| 6 | return name ? router.toString() : router; |
| 7 | } |
| 8 | |
| 9 | export const ZiggyVue = { |
| 10 | install(app, options) { |
no test coverage detected