Sha256: 6e91154d028c0cbfa3b32e2392c8a8a6c0d8abd8f0ba4e79150b1bb83e47b6c8
Contents?: true
Size: 342 Bytes
Versions: 7
Compression:
Stored size: 342 Bytes
Contents
import EmberRouter from "@ember/routing/router"; import config from "./config/environment"; const Router = EmberRouter.extend({ location: config.locationType, rootURL: config.rootURL }); Router.map(function() { this.route("index", { path: "/" }); this.route("show", { path: "/show/:id" }); }); export default Router;
Version data entries
7 entries across 7 versions & 1 rubygems