Skip to main content
Версия: v2.8.1

Маршрутизация

Маршрутизация - это популярный способ переключения шаблонов в приложении. Эта страница предлагает некоторые рекомендации о том, как это сделать.

Vue

Рекомендуемый подход к маршрутизации в Vue — Hash Mode:

import { createRouter, createWebHashHistory } from "vue-router";

const router = createRouter({
history: createWebHashHistory(),
routes: [
//...
],
});

Angular

Рекомендуемый подход к маршрутизации в Angular - HashLocationStrategy:

RouterModule.forRoot(routes, { useHash: true });

React

The recommended approach for routing in React is HashRouter:

import { HashRouter } from "react-router-dom";

ReactDOM.render(
<HashRouter basename={"/"}>
{/* The rest of your app goes here */}
<Routes>
<Route path="/" element={<Page0 />} exact />
<Route path="/page1" element={<Page1 />} />
<Route path="/page2" element={<Page2 />} />
{/* more... */}
</Routes>
</HashRouter>,
root
);