problem description
for example, on the home page of http://xxx/index.html-sharp/, click a link to go to the application page, but the browser"s url has not changed; how to make the url also change to the corresponding route http://xxx/index.html-sharp/applic.? Like the route jump of vue, does url change?
related codes
routes = [{
path: "/",
url: "./index.html",
},
// Page Loaders & Router
{
path: "/table/",
componentUrl: "./pages/table.html",
},
{
path: "/application/",
componentUrl: "./pages/application.html",
},
];
<div class="row no-gap">
<a href="/application/" class="col page-content-item"></a>
<a href="/table/" class="col page-content-item"></a>
</div>
Please also tell the great god who knows, thank you.