diff --git a/.gitignore b/.gitignore deleted file mode 100644 index 26ecdec..0000000 --- a/.gitignore +++ /dev/null @@ -1,3 +0,0 @@ -node_modules/ -_book/ -npm-debug.log diff --git a/.nojekyll b/.nojekyll new file mode 100644 index 0000000..e69de29 diff --git a/README.md b/README.md deleted file mode 100644 index dd03460..0000000 --- a/README.md +++ /dev/null @@ -1,156 +0,0 @@ -# [React Router 中文文档](https://github.com/react-guide/react-router-cn) - -> 本文档是基于 React-Router 2.X 版本翻译。最新版变化较多,请访问[官方站点](https://reacttraining.com/react-router/web/guides/philosophy),实在跟不上节奏啊😂😂 - -在线 Gitbook 地址:http://react-guide.github.io/react-router-cn/ - -英文原版:https://github.com/rackt/react-router/tree/master/docs - -React Router 是完整的 React 路由解决方案 - -React Router 保持 UI 与 URL 同步。它拥有简单的 API 与强大的功能例如代码缓冲加载、动态路由匹配、以及建立正确的位置过渡处理。你第一个念头想到的应该是 URL,而不是事后再想起。 - -**重点:这是 React Router 的 `master` 分支,其中包含了很多还没有发布的修改。如果要看到最新公布的代码,请浏览 [`latest` 标签](https://github.com/rackt/react-router/tree/latest)。** - -### 文档 & 帮助 - -- [API 文档与指南](/docs) -- [Change Log](https://github.com/rackt/react-router/blob/master/CHANGELOG.md) -- [Stack Overflow](http://stackoverflow.com/questions/tagged/react-router) -- [Codepen Boilerplate](http://codepen.io/anon/pen/xwQZdy?editors=001) 用于反馈 bug - -**注意:** **如果你仍然使用的是 React Router 0.13.x,可以在 [the 0.13.x branch](https://github.com/rackt/react-router/tree/0.13.x) 找到 [文档](https://github.com/rackt/react-router/tree/0.13.x/docs/guides)。升级信息可以查看 [change log](https://github.com/rackt/react-router/blob/master/CHANGELOG.md)。** - -如果有疑问和技术难点,请到[我们的 Reactiflux 频道](https://discord.gg/0ZcbPKXt5bYaNQ46)或 [Stack Overflow](http://stackoverflow.com/questions/tagged/react-router) 提问。这里的 issue 是**专门**为反馈 bug 和新特性提出所设立的。 - -### 浏览器支持 - -我们支持所有的浏览器和环境中运行 React。 - -### 安装 - -首先通过 [npm](https://www.npmjs.com/) 安装: - - $ npm install --save react-router - -然后使用一个支持 CommonJS 或 ES2015 的模块管理器,例如 [webpack](https://webpack.github.io/): - -```js -// 使用 ES6 的转译器,如 babel -import { Router, Route, Link } from 'react-router' - -// 不使用 ES6 的转译器 -var ReactRouter = require('react-router') -var Router = ReactRouter.Router -var Route = ReactRouter.Route -var Link = ReactRouter.Link -``` - -也可以在 [unpkg](https://unpkg.com) 上构建 UMD 格式: - -```html - -``` - -你可以在 `window.ReactRouter` 找到这个库。 - -### 版本控制和稳定性 - -React Router 遵循语义化版本控制,并很好地诠释了它。我们希望 React Router 是一个稳定的依赖库,这样易于保持流行性。这是我们对你的应用的升级策略。 - -假设我们目前是 1.0 版本: - -1. 2.0 完全向后兼容 1.0,所以你可以放心地升级,然后逐步更新你的代码。 -2. 所有在 1.0 被弃用的 API 都会在控制台以 warn 的形式打印出来,并链接到升级指南。 -3. 在 3.0 中将会完全移除 1.0 所弃用的东西。 -4. 3.0 将发布不早于 2.0 三个月后。最坏的情况是,给你一个新的 API,你需要花费 6 个月的时间去完美升级。 -5. 可以用 rackt/rackt-codemod 去自动升级你的代码 - -> 如果是完全向后兼容的,为什么这不是一个小版本呢? - -如果我们不提供向后兼容性,然后你就不会问这个问题 —— 升级后的应用将不可运行。这不是我们想要的结果,我们想要平稳地,逐步地升级。 - -在实践中,这意味着你可以: - -1. 从 1.0 升级到 2.0,你的应用仍可以运行。 -2. 逐步更新你的代码到新的 API,在下一个版本发布之前,你有 3 个月的时间去完成。 -3. 运行 codemods 去处理自动运行 (2) 部分。 -4. 如果您的代码运行没有警告,你可以使用 3.0 版本重复这个列表 - -### 这看起来像什么? - -```js -import React from 'react' -import { Router, Route, Link } from 'react-router' - -const App = React.createClass({/*...*/}) -const About = React.createClass({/*...*/}) -// 等等。 - -const Users = React.createClass({ - render() { - return ( -
-

Users

-
- -
-
- {this.props.children} -
-
- ) - } -}) - -const User = React.createClass({ - componentDidMount() { - this.setState({ - // 路由应该通过有用的信息来呈现,例如 URL 的参数 - user: findUserById(this.props.params.userId) - }) - }, - - render() { - return ( -
-

{this.state.user.name}

- {/* 等等。 */} -
- ) - } -}) - -// 路由配置说明(你不用加载整个配置, -// 只需加载一个你想要的根路由, -// 也可以延迟加载这个配置)。 -React.render(( - - - - - - - - - -), document.body) -``` - -更多请看 [介绍](/docs/Introduction.md)、[高级用法](/docs/guides/advanced/README.md)和 [示例](https://github.com/rackt/react-router/tree/master/examples)。 - -### 感谢 - -感谢[我们的赞助商](https://github.com/rackt/react-router/blob/master/SPONSORS.md)对于 React Router 开发的支持。 - -React Router 灵感来源于 Ember's fantastic router。非常感谢 Ember 团队。 - -同时,也感谢 [BrowserStack](https://www.browserstack.com/) 提供一个平台让我们能在真实的浏览器中运行我们的项目。 - - -**本文档翻译流程符合 [ETC 翻译规范](https://github.com/react-guide/ETC),欢迎你来一起完善** diff --git a/book.json b/book.json deleted file mode 100644 index 8bfa449..0000000 --- a/book.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "gitbook": "2.3.3", - "structure": { - "summary": "docs/README.md" - }, - "plugins": ["edit-link", "prism", "ga"], - "pluginsConfig": { - "edit-link": { - "base": "https://github.com/react-guide/react-router-cn/tree/master", - "label": "开始纠错" - }, - "ga": { - "token": "UA-68960215-1" - } - } -} \ No newline at end of file diff --git a/docs/API.html b/docs/API.html new file mode 100644 index 0000000..fa76a82 --- /dev/null +++ b/docs/API.html @@ -0,0 +1,1037 @@ + + + + + + + + API 文档 | React Router 中文文档 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + +
+ + +
+ +
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + +

+ + React Router 中文文档 +

+
+ +
+
+ + +
+ +   开始纠错

API 接口

+
+

TODO: Need proofread https://github.com/rackt/react-router/blob/master/docs/API.md

+
+ +

组件

+

Router

+

React Router 的重要组件。它能保持 UI 和 URL 的同步。

+

Props

+
children (required)
+

一个或多个的 RoutePlainRoute。当 history 改变时, <Router> 会匹配出 Route 的一个分支,并且渲染这个分支中配置的组件,渲染时保持父 route 组件嵌套子 route 组件。

+
routes
+

children 的别名。

+
history
+

Router 监听的 history 对象,由 history 包提供。

+
createElement(Component, props)
+

当 route 准备渲染 route 组件的一个分支时,就会用这个函数来创建 element。当你使用某种形式的数据进行抽象时,你可以想要获取创建 element 的控制权,例如在这里设置组件监听 store 的变化,或者使用 props 为每个组件传入一些应用模块。

+
<Router createElement={createElement} />
+
+// 默认行为
+function createElement(Component, props) {
+  // 确保传入了所有的 props!
+  return <Component {...props}/>
+}
+
+// 你可能会使用什么,如 Relay
+function createElement(Component, props) {
+  // 确保传入了所有的 props!
+  return <RelayContainer Component={Component} routerProps={props}/>
+}
+
+
stringifyQuery(queryObject)
+

一个用于把 Link 或调用 transitionTo 函数的对象转化成 URL query 字符串的函数。

+
parseQueryString(queryString)
+

一个用于把 query 字符串转化成对象,并传递给 route 组件 props 的函数。

+
onError(error)
+

当路由匹配到时,也有可能会抛出错误,此时你就可以捕获和处理这些错误。通常,它们会来自那些异步的特性,如 route.getComponentsroute.getIndexRoute,和 route.getChildRoutes

+
onUpdate()
+

当 URL 改变时,需要更新路由的 state 时会被调用。

+

示例

+

请看仓库中的示例目录 examples/,这些例子都广泛使用了 Router

+ +

允许用户浏览应用的主要方式。<Link> 以适当的 href 去渲染一个可访问的锚标签。

+

<Link> 可以知道哪个 route 的链接是激活状态的,并可以自动为该链接添加 activeClassNameactiveStyle

+

Props

+
to
+

跳转链接的路径,如 /users/123

+
query
+

已经转化成字符串的键值对的对象。

+
hash
+

URL 的 hash 值,如 #a-hash

+

注意:React Router 目前还不能管理滚动条的位置,并且不会自动滚动到 hash 对应的元素上。如果需要管理滚动条位置,可以使用 scroll-behavior 这个库。

+
state
+

保存在 location 中的 state。

+
activeClassName
+

当某个 route 是激活状态时,<Link> 可以接收传入的 className。失活状态下是默认的 class。

+
activeStyle
+

当某个 route 是激活状态时,可以将样式添加到链接元素上。

+
onClick(e)
+

自定义点击事件的处理方法。如处理 <a> 标签一样 - 调用 e.preventDefault() 来防止过度的点击,同时 e.stopPropagation() 可以阻止冒泡的事件。

+
其他
+

你也可以在 <a> 标签上传入一些你想要的 props,如 titleidclassName 等等。

+

示例

+

<Route path="/users/:userId" /> 这样的 route:

+
<Link to={`/users/${user.id}`} activeClassName="active">{user.name}</Link>
+// 变成它们其中一个依赖在 History 上,当这个 route 是
+// 激活状态的
+<a href="/users/123" class="active">Michael</a>
+<a href="#/users/123">Michael</a>
+
+// 修改 activeClassName
+<Link to={`/users/${user.id}`} activeClassName="current">{user.name}</Link>
+
+// 当链接激活时,修改它的样式
+<Link to="/users" style={{color: 'white'}} activeStyle={{color: 'red'}}>Users</Link>
+
+ +

敬请期待!

+

RoutingContext

+

在 context 中给定路由的 state、设置 history 对象和当前的 location,<RoutingContext> 就会去渲染组件树。

+

组件的配置

+

Route

+

Route 是用于声明路由映射到应用程序的组件层。

+

Props

+
path
+

URL 中的路径。

+

它会组合父 route 的路径,除非它是从 / 开始的, +将它变成一个绝对路径。

+

注意:在动态路由中,绝对路径可能不适用于 route 配置中。

+

如果它是 undefined,路由会去匹配子 route。

+
component
+

当匹配到 URL 时,单个的组件会被渲染。它可以 +被父 route 组件的 this.props.children 渲染。

+
const routes = (
+  <Route component={App}>
+    <Route path="groups" component={Groups}/>
+    <Route path="users" component={Users}/>
+  </Route>
+)
+
+class App extends React.Component {
+  render () {
+    return (
+      <div>
+        {/* 这会是 <Users> 或 <Groups> */}
+        {this.props.children}
+      </div>
+    )
+  }
+}
+
+
components
+

Route 可以定义一个或多个已命名的组件,当路径匹配到 URL 时, +它们作为 name:component 对的一个对象去渲染。它们可以被 +父 route 组件的 this.props[name] 渲染。

+
// 想想路由外部的 context — 如果你可拔插
+// `render` 的部分,你可能需要这么做:
+// <App main={<Users />} sidebar={<UsersSidebar />} />
+
+const routes = (
+  <Route component={App}>
+    <Route path="groups" components={{main: Groups, sidebar: GroupsSidebar}}/>
+    <Route path="users" components={{main: Users, sidebar: UsersSidebar}}>
+      <Route path="users/:userId" component={Profile}/>
+    </Route>
+  </Route>
+)
+
+class App extends React.Component {
+  render () {
+    const { main, sidebar } = this.props
+    return (
+      <div>
+        <div className="Main">
+          {main}
+        </div>
+        <div className="Sidebar">
+          {sidebar}
+        </div>
+      </div>
+    )
+  }
+}
+
+class Users extends React.Component {
+  render () {
+    return (
+      <div>
+        {/* 当路径是 "/users/123" 是 `children` 会是 <Profile> */}
+        {/* UsersSidebar 也可以获取作为 this.props.children 的 <Profile> ,
+            所以这有点奇怪,但你可以决定哪一个可以
+            继续这种嵌套 */}
+        {this.props.children}
+      </div>
+    )
+  }
+}
+
+
getComponent(location, callback)
+

component 一样,但是是异步的,对于 code-splitting 很有用。

+
callback signature
+

cb(err, component)

+
<Route path="courses/:courseId" getComponent={(location, cb) => {
+  // 做一些异步操作去查找组件
+  cb(null, Course)
+}}/>
+
+
getComponents(location, callback)
+

component 一样,但是是异步的,对于 code-splitting 很有用。

+
callback signature
+

cb(err, components)

+
<Route path="courses/:courseId" getComponent={(location, cb) => {
+  // 做一些异步操作去查找组件
+  cb(null, {sidebar: CourseSidebar, content: Course})
+}}/>
+
+
children
+

Route 可以被嵌套,this.props.children 包含了从子 route 组件创建的元素。由于这是路由设计中非常重要的部分,请参考 Route 配置

+
onEnter(nextState, replaceState, callback?)
+

当 route 即将进入时调用。它提供了下一个路由的 state,一个函数重定向到另一个路径。this 会触发钩子去创建 route 实例。

+

callback 作为函数的第三个参数传入时,这个钩子将是异步执行的,并且跳转会阻塞直到 callback 被调用。

+
onLeave()
+

当 route 即将退出时调用。

+

PlainRoute

+

route 定义的一个普通的 JavaScript 对象。 Router 把 JSX 的 <Route> 转化到这个对象中,如果你喜欢,你可以直接使用它们。 所有的 props 都和 <Route> 的 props 一样,除了那些列在这里的。

+

Props

+
childRoutes
+

子 route 的一个数组,与在 JSX route 配置中的 children 一样。

+
getChildRoutes(location, callback)
+

childRoutes 一样,但是是异步的,并且可以接收 location。对于 code-splitting 和动态路由匹配很有用(给定一些 state 或 session 数据会返回不同的子 route)。

+
callback signature
+

cb(err, routesArray)

+
let myRoute = {
+  path: 'course/:courseId',
+  childRoutes: [
+    announcementsRoute,
+    gradesRoute,
+    assignmentsRoute
+  ]
+}
+
+// 异步的子 route
+let myRoute = {
+  path: 'course/:courseId',
+  getChildRoutes(location, cb) {
+    // 做一些异步操作去查找子 route
+    cb(null, [ announcementsRoute, gradesRoute, assignmentsRoute ])
+  }
+}
+
+// 可以根据一些 state
+// 跳转到依赖的子 route
+<Link to="/picture/123" state={{ fromDashboard: true }}/>
+
+let myRoute = {
+  path: 'picture/:id',
+  getChildRoutes(location, cb) {
+    let { state } = location
+
+    if (state && state.fromDashboard) {
+      cb(null, [dashboardPictureRoute])
+    } else {
+      cb(null, [pictureRoute])
+    }
+  }
+}
+
+
indexRoute
+

index route。这与在使用 JSX route 配置时指定一个 <IndexRoute> 子集一样。

+
getIndexRoute(location, callback)
+

indexRoute 一样,但是是异步的,并且可以接收 location。与 getChildRoutes 一样,对于 code-splitting 和动态路由匹配很有用

+
callback signature
+

cb(err, route)

+
// 例如:
+let myIndexRoute = {
+  component: MyIndex
+}
+
+let myRoute = {
+  path: 'courses',
+  indexRoute: myIndexRoute
+}
+
+// 异步的 index route
+let myRoute = {
+  path: 'courses',
+  getIndexRoute(location, cb) {
+    // 做一些异步操作
+    cb(null, myIndexRoute)
+  }
+}
+
+

Redirect

+

在应用中 <Redirect> 可以设置重定向到其他 route 而不改变旧的 URL。

+

Props

+
from
+

你想由哪个路径进行重定向,包括动态段。

+
to
+

你想重定向的路径。

+
query
+

默认情况下,query 的参数只会经过,但如果你需要你可以指定它们。

+
// 我们需要从 `/profile/123` 改变到 `/about/123`
+// 并且由 `/get-in-touch` 重定向到 `/contact`
+<Route component={App}>
+  <Route path="about/:userId" component={UserProfile}/>
+  {/* /profile/123 -> /about/123 */}
+  <Redirect from="profile/:userId" to="about/:userId" />
+</Route>
+
+

注意,在 route 层 <Redirect> 可以被放在任何地方,尽管正常的优先 规则仍适用。如果你喜欢将下一个重定向到它各自的 route 上,from 的路径会匹配到一个与 path 一样的正常路径。

+
<Route path="course/:courseId">
+  <Route path="dashboard" />
+  {/* /course/123/home -> /course/123/dashboard */}
+  <Redirect from="home" to="dashboard" />
+</Route>
+
+

IndexRoute

+

当用户在父 route 的 URL 时, +Index Routes 允许你为父 route 提供一个默认的 "child", +并且为使<IndexLink> 能用提供了约定。

+

请看 Index Routes 指南

+

Props

+

Route 的 props 一样,除了 path

+

IndexRedirect

+

Index Redirects 允许你从一个父 route 的 URL 重定向到其他 route。 +它们被用于允许子 route 作为父 route 的默认 route, +同时保持着不同的 URL。

+

请看 Index Routes 指南

+

Props

+

Redirect 的 props 一样,除了 from

+

Route Components

+

当 route 匹配到 URL 时会渲染一个 route 的组件。路由会在渲染时将以下属性注入组件中:

+

history

+

Router 的 history history

+

对于跳转很有用的 this.props.history.pushState(state, path, query)

+

location

+

当前的 location

+

params

+

URL 的动态段。

+

route

+

渲染组件的 route。

+

routeParams

+

this.props.params 是直接在组件中指定 route 的一个子集。例如,如果 route 的路径是 users/:userId 而 URL 是 /users/123/portfolios/345,那么 this.props.routeParams 会是 {userId: '123'},并且 this.props.params 会是 {userId: '123', portfolioId: 345}

+

children

+

匹配到子 route 的元素将被渲染。如果 route 有已命名的组件,那么此属性会是 undefined,并且可用的组件会被直接替换到 this.props 上。

+
示例
+
render((
+  <Router>
+    <Route path="/" component={App}>
+      <Route path="groups" component={Groups} />
+      <Route path="users" component={Users} />
+    </Route>
+  </Router>
+), node)
+
+class App extends React.Component {
+  render() {
+    return (
+      <div>
+        {/* 这可能是 <Users> 或 <Groups> */}
+        {this.props.children}
+      </div>
+    )
+  }
+}
+
+

已命名的组件

+

当一个 route 有一个或多个已命名的组件时,其子元素的可用性是通过 this.props 命名的。因此 this.props.children 将会是 undefined。那么所有的 route 组件都可以参与嵌套。

+

示例

+
render((
+  <Router>
+    <Route path="/" component={App}>
+      <Route path="groups" components={{main: Groups, sidebar: GroupsSidebar}} />
+      <Route path="users" components={{main: Users, sidebar: UsersSidebar}}>
+        <Route path="users/:userId" component={Profile} />
+      </Route>
+    </Route>
+  </Router>
+), node)
+
+class App extends React.Component {
+  render() {
+    // 在父 route 中,被匹配的子 route 变成 props
+    return (
+      <div>
+        <div className="Main">
+          {/* 这可能是 <Groups> 或 <Users> */}
+          {this.props.main}
+        </div>
+        <div className="Sidebar">
+          {/* 这可能是 <GroupsSidebar> 或 <UsersSidebar> */}
+          {this.props.sidebar}
+        </div>
+      </div>
+    )
+  }
+}
+
+class Users extends React.Component {
+  render() {
+    return (
+      <div>
+        {/* 如果在 "/users/123" 路径上这会是 <Profile> */}
+        {/* UsersSidebar 也会获取到作为 this.props.children 的 <Profile> 。
+            你可以把它放这渲染 */}
+        {this.props.children}
+      </div>
+    )
+  }
+}
+
+

Mixins

+

生命周期 Mixin

+

在组件中添加一个钩子,当路由要从 route 组件的配置中跳转出来时被调用,并且有机会去取消这次跳转。主要用于表单的部分填写。

+

在常规的跳转中, routerWillLeave 会接收到一个单一的参数:我们正要跳转的 location。去取消此次跳转,返回 false。

+

提示用户确认,返回一个提示信息(字符串)。在 web 浏览器 beforeunload 事件发生时,routerWillLeave 不会接收到一个 location 的对象(假设你正在使用 useBeforeUnload history 的增强方法)。在此之上,我们是不可能知道要跳转的 location,因此 routerWillLeave 必须在用户关闭标签之前返回一个提示信息。

+

生命周期方法

+
routerWillLeave(nextLocation)
+

当路由尝试从一个 route 跳转到另一个并且渲染这个组件时被调用。

+
arguments
+
    +
  • nextLocation - 下一个 location
  • +
+

History Mixin

+

在组件中添加路由的 history 对象。

+

注意:你的 route components 不需要这个 mixin,它在 this.props.history 中已经是可用的了。这是为了组件更深次的渲染树中需要访问路由的 history 对象。

+

Methods

+
pushState(state, pathname, query)
+

跳转至一个新的 URL。

+
arguments
+
    +
  • state - location 的 state。
  • +
  • pathname - 没有 query 完整的 URL。
  • +
  • query - 通过路由字符串化的一个对象。
  • +
+
replaceState(state, pathname, query)
+

在不影响 history 长度的情况下(如一个重定向),用新的 URL 替换当前这个。

+
参数
+
    +
  • state - location 的 state。
  • +
  • pathname - 没有 query 完整的 URL。
  • +
  • query - 通过路由字符串化的一个对象。
  • +
+
go(n)
+

在 history 中使用 n-n 进行前进或后退

+
goBack()
+

在 history 中后退。

+
goForward()
+

在 history 中前进。

+
createPath(pathname, query)
+

使用路由配置,将 query 字符串化加到路径名中。

+
createHref(pathname, query)
+

使用路由配置,创建一个 URL。例如,它会在 pathname 的前面加上 #/ 给 hash history。

+
isActive(pathname, query, indexOnly)
+

根据当前路径是否激活返回 truefalse。通过 pathname 匹配到 route 分支下的每个 route 将会是 true(子 route 是激活的情况下,父 route 也是激活的),除非 indexOnly 已经指定了,在这种情况下,它只会匹配到具体的路径。

+
参数
+
    +
  • pathname - 没有 query 完整的 URL。
  • +
  • query - 如果没有指定,那会是一个包含键值对的对象,并且在当前的 query 中是激活状态的 - 在当前的 query 中明确是 undefined 的值会丢失相应的键或 undefined
  • +
  • indexOnly - 一个 boolean(默认:false)。
  • +
+

示例

+
import { History } from 'react-router'
+
+React.createClass({
+  mixins: [ History ],
+  render() {
+    return (
+      <div>
+        <div onClick={() => this.history.pushState(null, '/foo')}>Go to foo</div>
+        <div onClick={() => this.history.replaceState(null, 'bar')}>Go to bar without creating a new history entry</div>
+        <div onClick={() => this.history.goBack()}>Go back</div>
+     </div>
+   )
+ }
+})
+
+

假设你正在使用 bootstrap,并且在 Tab 中想让那些 li 获得 active

+
import { Link, History } from 'react-router'
+
+const Tab = React.createClass({
+  mixins: [ History ],
+  render() {
+    let isActive = this.history.isActive(this.props.to, this.props.query)
+    let className = isActive ? 'active' : ''
+    return <li className={className}><Link {...this.props}/></li>
+  }
+})
+
+// 如 <Link/> 一样使用它,你会得到一个包进 `li` 的锚点
+// 并且还有一个自动的 `active` class。
+<Tab href="foo">Foo</Tab>
+
+

但我仍然在使用 Classes

+
+

注意难道我们没有告诉你要使用 ES6 的 Classes?:)

+
+

https://twitter.com/soprano/status/610867662797807617

+

在应用中少数组件由于 History mixin 的缘故而用得不爽,此时有以下几个选项:

+
    +
  • this.props.history 通过 route 组件到达需要它的组件中。
  • +
  • 使用 context
  • +
+
import { PropTypes } from 'react-router'
+
+class MyComponent extends React.Component {
+  doStuff() {
+    this.context.history.pushState(null, '/some/path')
+  }
+}
+
+MyComponent.contextTypes = { history: PropTypes.history }
+
+ +
function connectHistory(Component) {
+  return React.createClass({
+    mixins: [ History ],
+    render() {
+      return <Component {...this.props} history={this.history} />
+    }
+  })
+}
+
+// 其他文件
+import connectHistory from './connectHistory'
+
+class MyComponent extends React.Component {
+  doStuff() {
+    this.props.history.pushState(null, '/some/where')
+  }
+}
+
+export default connectHistory(MyComponent)
+
+

RouteContext Mixin

+

RouteContext mixin 提供了一个将 route 组件设置到 context 中的便捷方法。这对于 route 渲染元素并且希望用 生命周期 mixin 来阻止跳转是很有必要的。

+

简单地将 this.context.route 添加到组件中。

+

Utilities

+

useRoutes(createHistory)

+

返回一个新的 createHistory 函数,它可以用来创建读取 route 的 history 对象。

+
    +
  • listen((error, nextState) => {})
  • +
  • listenBeforeLeavingRoute(route, (nextLocation) => {})
  • +
  • match(location, (error, redirectLocation, nextState) => {})
  • +
  • isActive(pathname, query, indexOnly=false)
  • +
+

match(location, cb)

+

这个函数被用于服务端渲染。它在渲染之前会匹配一组 route 到一个 location,并且在完成时调用 callback(error, redirectLocation, renderProps)

+

传给回调函数去 match 的三个参数如下:

+
    +
  • error:如果报错时会出现一个 Javascript 的 Error 对象,否则是 undefined
  • +
  • redirectLocation:如果 route 重定向时会有一个 Location 对象,否则是 undefined
  • +
  • renderProps:当匹配到 route 时 props 应该通过路由的 context,否则是 undefined
  • +
+

如果这三个参数都是 undefined,这就意味着在给定的 location 中没有 route 被匹配到。

+

注意:你可能不想在浏览器中用它,除非你做的是异步 route 的服务端渲染。

+

createRoutes(routes)

+

创建并返回一个从给定对象 route 的数组,它可能是 JSX 的 route,一个普通对象的 route,或是其他的数组。

+

params

+
routes
+

一个或多个的 RoutePlainRoute

+

PropTypes

+

敬请期待!

+ + +
+ + +
+
+
+ + + + + + + +
+
+ + + + + + + + + + + + + + + + + + diff --git a/docs/API.md b/docs/API.md deleted file mode 100644 index 7274b8e..0000000 --- a/docs/API.md +++ /dev/null @@ -1,696 +0,0 @@ -# API 接口 - -> TODO: Need proofread https://github.com/rackt/react-router/blob/master/docs/API.md - -* [组件](#components) - - [Router](#router) - - [Link](#link) - - [IndexLink](#indexlink) - - [RoutingContext](#routingcontext) - -* [组件的配置](#configuration-components) - - [Route](#route) - - [PlainRoute](#plainroute) - - [Redirect](#redirect) - - [IndexRoute](#indexroute) - - [IndexRedirect](#indexredirect) - -* [Route 组件](#route-components) - - [已命名的组件](#named-components) - -* [Mixins](#mixins) - - [生命周期](#lifecycle-mixin) - - [History](#history-mixin) - - [RouteContext](#routecontext-mixin) - -* [Utilities](#utilities) - * [useRoutes](#useroutescreatehistory) - * [match](#matchlocation-cb) - * [createRoutes](#createroutesroutes) - * [PropTypes](#proptypes) - - -## 组件 - -### Router -React Router 的重要组件。它能保持 UI 和 URL 的同步。 - -#### Props -##### `children` (required) -一个或多个的 [`Route`](#route) 或 [`PlainRoute`](#plainroute)。当 history 改变时, `` 会匹配出 [`Route`](#route) 的一个分支,并且渲染这个分支中配置的[组件](#routecomponent),渲染时保持父 route 组件嵌套子 route 组件。 - -##### `routes` -`children` 的别名。 - -##### `history` -Router 监听的 history 对象,由 `history` 包提供。 - -##### `createElement(Component, props)` -当 route 准备渲染 route 组件的一个分支时,就会用这个函数来创建 element。当你使用某种形式的数据进行抽象时,你可以想要获取创建 element 的控制权,例如在这里设置组件监听 store 的变化,或者使用 props 为每个组件传入一些应用模块。 - -```js - - -// 默认行为 -function createElement(Component, props) { - // 确保传入了所有的 props! - return -} - -// 你可能会使用什么,如 Relay -function createElement(Component, props) { - // 确保传入了所有的 props! - return -} -``` - -##### `stringifyQuery(queryObject)` -一个用于把 [`Link`](#link) 或调用 [`transitionTo`](#transitiontopathname-query-state) 函数的对象转化成 URL query 字符串的函数。 - -##### `parseQueryString(queryString)` -一个用于把 query 字符串转化成对象,并传递给 route 组件 props 的函数。 - -##### `onError(error)` -当路由匹配到时,也有可能会抛出错误,此时你就可以捕获和处理这些错误。通常,它们会来自那些异步的特性,如 [`route.getComponents`](#getcomponentslocation-callback),[`route.getIndexRoute`](#getindexroutelocation-callback),和 [`route.getChildRoutes`](#getchildrouteslocation-callback)。 - -##### `onUpdate()` -当 URL 改变时,需要更新路由的 state 时会被调用。 - -#### 示例 -请看仓库中的示例目录 [`examples/`](/examples),这些例子都广泛使用了 `Router`。 - - - -### Link -允许用户浏览应用的主要方式。`` 以适当的 href 去渲染一个可访问的锚标签。 - -`` 可以知道哪个 route 的链接是激活状态的,并可以自动为该链接添加 `activeClassName` 或 `activeStyle`。 - -#### Props -##### `to` -跳转链接的路径,如 `/users/123`。 - -##### `query` -已经转化成字符串的键值对的对象。 - -##### `hash` -URL 的 hash 值,如 `#a-hash`。 - -**注意:React Router 目前还不能管理滚动条的位置,并且不会自动滚动到 hash 对应的元素上。如果需要管理滚动条位置,可以使用 [scroll-behavior](https://github.com/rackt/scroll-behavior) 这个库。** - -##### `state` -保存在 `location` 中的 state。 - -##### `activeClassName` -当某个 route 是激活状态时,`` 可以接收传入的 className。失活状态下是默认的 class。 - -##### `activeStyle` -当某个 route 是激活状态时,可以将样式添加到链接元素上。 - -##### `onClick(e)` -自定义点击事件的处理方法。如处理 `` 标签一样 - 调用 `e.preventDefault()` 来防止过度的点击,同时 `e.stopPropagation()` 可以阻止冒泡的事件。 - -##### **其他** -你也可以在 `` 标签上传入一些你想要的 props,如 `title`,`id`,`className` 等等。 - -#### 示例 -如 `` 这样的 route: - -```js -{user.name} -// 变成它们其中一个依赖在 History 上,当这个 route 是 -// 激活状态的 -Michael -Michael - -// 修改 activeClassName -{user.name} - -// 当链接激活时,修改它的样式 -Users -``` - -### IndexLink -敬请期待! - -### RoutingContext -在 context 中给定路由的 state、设置 history 对象和当前的 location,`` 就会去渲染组件树。 - - - -## 组件的配置 - -## Route -`Route` 是用于声明路由映射到应用程序的组件层。 - -#### Props -##### `path` -URL 中的路径。 - -它会组合父 route 的路径,除非它是从 `/` 开始的, -将它变成一个绝对路径。 - -**注意**:在[动态路由](/docs/guides/advanced/DynamicRouting.md)中,绝对路径可能不适用于 route 配置中。 - -如果它是 undefined,路由会去匹配子 route。 - -##### `component` -当匹配到 URL 时,单个的组件会被渲染。它可以 -被父 route 组件的 `this.props.children` 渲染。 - -```js -const routes = ( - - - - -) - -class App extends React.Component { - render () { - return ( -
- {/* 这会是 */} - {this.props.children} -
- ) - } -} -``` - -##### `components` -Route 可以定义一个或多个已命名的组件,当路径匹配到 URL 时, -它们作为 `name:component` 对的一个对象去渲染。它们可以被 -父 route 组件的 `this.props[name]` 渲染。 - -```js -// 想想路由外部的 context — 如果你可拔插 -// `render` 的部分,你可能需要这么做: -// } sidebar={} /> - -const routes = ( - - - - - - -) - -class App extends React.Component { - render () { - const { main, sidebar } = this.props - return ( -
-
- {main} -
-
- {sidebar} -
-
- ) - } -} - -class Users extends React.Component { - render () { - return ( -
- {/* 当路径是 "/users/123" 是 `children` 会是 */} - {/* UsersSidebar 也可以获取作为 this.props.children 的 , - 所以这有点奇怪,但你可以决定哪一个可以 - 继续这种嵌套 */} - {this.props.children} -
- ) - } -} -``` -##### `getComponent(location, callback)` -与 `component` 一样,但是是异步的,对于 code-splitting 很有用。 - -###### `callback` signature -`cb(err, component)` - -```js - { - // 做一些异步操作去查找组件 - cb(null, Course) -}}/> -``` - -##### `getComponents(location, callback)` -与 `component` 一样,但是是异步的,对于 code-splitting 很有用。 - -###### `callback` signature -`cb(err, components)` - -```js - { - // 做一些异步操作去查找组件 - cb(null, {sidebar: CourseSidebar, content: Course}) -}}/> -``` - -##### `children` -Route 可以被嵌套,`this.props.children` 包含了从子 route 组件创建的元素。由于这是路由设计中非常重要的部分,请参考 [Route 配置](/docs/guides/basics/RouteConfiguration.md)。 - -##### `onEnter(nextState, replaceState, callback?)` -当 route 即将进入时调用。它提供了下一个路由的 state,一个函数重定向到另一个路径。`this` 会触发钩子去创建 route 实例。 - -当 `callback` 作为函数的第三个参数传入时,这个钩子将是异步执行的,并且跳转会阻塞直到 `callback` 被调用。 - -##### `onLeave()` -当 route 即将退出时调用。 - - - -## PlainRoute -route 定义的一个普通的 JavaScript 对象。 `Router` 把 JSX 的 `` 转化到这个对象中,如果你喜欢,你可以直接使用它们。 所有的 props 都和 `` 的 props 一样,除了那些列在这里的。 -#### Props -##### `childRoutes` -子 route 的一个数组,与在 JSX route 配置中的 `children` 一样。 - -##### `getChildRoutes(location, callback)` -与 `childRoutes` 一样,但是是异步的,并且可以接收 `location`。对于 code-splitting 和动态路由匹配很有用(给定一些 state 或 session 数据会返回不同的子 route)。 - -###### `callback` signature -`cb(err, routesArray)` - -```js -let myRoute = { - path: 'course/:courseId', - childRoutes: [ - announcementsRoute, - gradesRoute, - assignmentsRoute - ] -} - -// 异步的子 route -let myRoute = { - path: 'course/:courseId', - getChildRoutes(location, cb) { - // 做一些异步操作去查找子 route - cb(null, [ announcementsRoute, gradesRoute, assignmentsRoute ]) - } -} - -// 可以根据一些 state -// 跳转到依赖的子 route - - -let myRoute = { - path: 'picture/:id', - getChildRoutes(location, cb) { - let { state } = location - - if (state && state.fromDashboard) { - cb(null, [dashboardPictureRoute]) - } else { - cb(null, [pictureRoute]) - } - } -} -``` - -##### `indexRoute` -[index route](/docs/guides/basics/IndexRoutes.md)。这与在使用 JSX route 配置时指定一个 `` 子集一样。 - -##### `getIndexRoute(location, callback)` - -与 `indexRoute` 一样,但是是异步的,并且可以接收 `location`。与 `getChildRoutes` 一样,对于 code-splitting 和动态路由匹配很有用 - -###### `callback` signature -`cb(err, route)` - -```js -// 例如: -let myIndexRoute = { - component: MyIndex -} - -let myRoute = { - path: 'courses', - indexRoute: myIndexRoute -} - -// 异步的 index route -let myRoute = { - path: 'courses', - getIndexRoute(location, cb) { - // 做一些异步操作 - cb(null, myIndexRoute) - } -} -``` - - - -## Redirect -在应用中 `` 可以设置重定向到其他 route 而不改变旧的 URL。 - -#### Props -##### `from` -你想由哪个路径进行重定向,包括动态段。 - -##### `to` -你想重定向的路径。 - -##### `query` -默认情况下,query 的参数只会经过,但如果你需要你可以指定它们。 - -```js -// 我们需要从 `/profile/123` 改变到 `/about/123` -// 并且由 `/get-in-touch` 重定向到 `/contact` - - - {/* /profile/123 -> /about/123 */} - - -``` - -注意,在 route 层 `` 可以被放在任何地方,尽管[正常的优先](/docs/guides/basics/RouteMatching.md#precedence) 规则仍适用。如果你喜欢将下一个重定向到它各自的 route 上,`from` 的路径会匹配到一个与 `path` 一样的正常路径。 - -```js - - - {/* /course/123/home -> /course/123/dashboard */} - - -``` - - - -## IndexRoute -当用户在父 route 的 URL 时, -Index Routes 允许你为父 route 提供一个默认的 "child", -并且为使`` 能用提供了约定。 - -请看 [Index Routes 指南](/docs/guides/basics/IndexRoutes.md)。 - -#### Props -与 [Route](#route) 的 props 一样,除了 `path`。 - - - -## IndexRedirect -Index Redirects 允许你从一个父 route 的 URL 重定向到其他 route。 -它们被用于允许子 route 作为父 route 的默认 route, -同时保持着不同的 URL。 - -请看 [Index Routes 指南](/docs/guides/basics/IndexRoutes.md)。 - -#### Props -与 [Redirect](#redirect) 的 props 一样,除了 `from`。 - - - -## Route Components -当 route 匹配到 URL 时会渲染一个 route 的组件。路由会在渲染时将以下属性注入组件中: - -#### `history` -Router 的 history [history](https://github.com/rackt/history/blob/master/docs)。 - -对于跳转很有用的 `this.props.history.pushState(state, path, query)` - -#### `location` -当前的 [location](https://github.com/rackt/history/blob/master/docs/Location.md)。 - -#### `params` -URL 的动态段。 - -#### `route` -渲染组件的 route。 - -#### `routeParams` -`this.props.params` 是直接在组件中指定 route 的一个子集。例如,如果 route 的路径是 `users/:userId` 而 URL 是 `/users/123/portfolios/345`,那么 `this.props.routeParams` 会是 `{userId: '123'}`,并且 `this.props.params` 会是 `{userId: '123', portfolioId: 345}`。 - -#### `children` -匹配到子 route 的元素将被渲染。如果 route 有[已命名的组件](https://github.com/rackt/react-router/blob/master/docs/API.md#named-components),那么此属性会是 undefined,并且可用的组件会被直接替换到 `this.props` 上。 - -##### 示例 -```js -render(( - - - - - - -), node) - -class App extends React.Component { - render() { - return ( -
- {/* 这可能是 */} - {this.props.children} -
- ) - } -} -``` - -### 已命名的组件 -当一个 route 有一个或多个已命名的组件时,其子元素的可用性是通过 `this.props` 命名的。因此 `this.props.children` 将会是 undefined。那么所有的 route 组件都可以参与嵌套。 - -#### 示例 -```js -render(( - - - - - - - - -), node) - -class App extends React.Component { - render() { - // 在父 route 中,被匹配的子 route 变成 props - return ( -
-
- {/* 这可能是 */} - {this.props.main} -
-
- {/* 这可能是 */} - {this.props.sidebar} -
-
- ) - } -} - -class Users extends React.Component { - render() { - return ( -
- {/* 如果在 "/users/123" 路径上这会是 */} - {/* UsersSidebar 也会获取到作为 this.props.children 的 。 - 你可以把它放这渲染 */} - {this.props.children} -
- ) - } -} -``` - - -## Mixins - -## 生命周期 Mixin -在组件中添加一个钩子,当路由要从 route 组件的配置中跳转出来时被调用,并且有机会去取消这次跳转。主要用于表单的部分填写。 - -在常规的跳转中, `routerWillLeave` 会接收到一个单一的参数:我们正要跳转的 `location`。去取消此次跳转,返回 false。 - -提示用户确认,返回一个提示信息(字符串)。在 web 浏览器 beforeunload 事件发生时,`routerWillLeave` 不会接收到一个 location 的对象(假设你正在使用 `useBeforeUnload` history 的增强方法)。在此之上,我们是不可能知道要跳转的 location,因此 `routerWillLeave` 必须在用户关闭标签之前返回一个提示信息。 - -#### 生命周期方法 -##### `routerWillLeave(nextLocation)` -当路由尝试从一个 route 跳转到另一个并且渲染这个组件时被调用。 - -##### arguments -- `nextLocation` - 下一个 location - - - -## History Mixin -在组件中添加路由的 history 对象。 - -**注意**:你的 route components 不需要这个 mixin,它在 `this.props.history` 中已经是可用的了。这是为了组件更深次的渲染树中需要访问路由的 `history` 对象。 - -#### Methods -##### `pushState(state, pathname, query)` -跳转至一个新的 URL。 - -###### arguments -- `state` - location 的 state。 -- `pathname` - 没有 query 完整的 URL。 -- `query` - 通过路由字符串化的一个对象。 - -##### `replaceState(state, pathname, query)` -在不影响 history 长度的情况下(如一个重定向),用新的 URL 替换当前这个。 - -###### 参数 -- `state` - location 的 state。 -- `pathname` - 没有 query 完整的 URL。 -- `query` - 通过路由字符串化的一个对象。 - -##### `go(n)` -在 history 中使用 `n` 或 `-n` 进行前进或后退 - -##### `goBack()` -在 history 中后退。 - -##### `goForward()` -在 history 中前进。 - -##### `createPath(pathname, query)` -使用路由配置,将 query 字符串化加到路径名中。 - -##### `createHref(pathname, query)` -使用路由配置,创建一个 URL。例如,它会在 `pathname` 的前面加上 `#/` 给 hash history。 - -##### `isActive(pathname, query, indexOnly)` -根据当前路径是否激活返回 `true` 或 `false`。通过 `pathname` 匹配到 route 分支下的每个 route 将会是 true(子 route 是激活的情况下,父 route 也是激活的),除非 `indexOnly` 已经指定了,在这种情况下,它只会匹配到具体的路径。 - -###### 参数 -- `pathname` - 没有 query 完整的 URL。 -- `query` - 如果没有指定,那会是一个包含键值对的对象,并且在当前的 query 中是激活状态的 - 在当前的 query 中明确是 `undefined` 的值会丢失相应的键或 `undefined` -- `indexOnly` - 一个 boolean(默认:`false`)。 - -#### 示例 -```js -import { History } from 'react-router' - -React.createClass({ - mixins: [ History ], - render() { - return ( -
-
this.history.pushState(null, '/foo')}>Go to foo
-
this.history.replaceState(null, 'bar')}>Go to bar without creating a new history entry
-
this.history.goBack()}>Go back
-
- ) - } -}) -``` - -假设你正在使用 bootstrap,并且在 Tab 中想让那些 `li` 获得 `active`: - -```js -import { Link, History } from 'react-router' - -const Tab = React.createClass({ - mixins: [ History ], - render() { - let isActive = this.history.isActive(this.props.to, this.props.query) - let className = isActive ? 'active' : '' - return
  • - } -}) - -// 如 一样使用它,你会得到一个包进 `li` 的锚点 -// 并且还有一个自动的 `active` class。 -Foo -``` - -#### 但我仍然在使用 Classes -> 注意难道我们没有告诉你要使用 ES6 的 Classes?:) - -https://twitter.com/soprano/status/610867662797807617 - -在应用中少数组件由于 `History` mixin 的缘故而用得不爽,此时有以下几个选项: - -- 让 `this.props.history` 通过 route 组件到达需要它的组件中。 -- 使用 context - -```js -import { PropTypes } from 'react-router' - -class MyComponent extends React.Component { - doStuff() { - this.context.history.pushState(null, '/some/path') - } -} - -MyComponent.contextTypes = { history: PropTypes.history } -``` - -- [确保你的 history 是一个 module](/docs/guides/advanced/NavigatingOutsideOfComponents.md) -- 创建一个高阶的组件,我们可能用它来结束跳转和阻止 history,只是没有时间去思考所有的方法。 - -```js -function connectHistory(Component) { - return React.createClass({ - mixins: [ History ], - render() { - return - } - }) -} - -// 其他文件 -import connectHistory from './connectHistory' - -class MyComponent extends React.Component { - doStuff() { - this.props.history.pushState(null, '/some/where') - } -} - -export default connectHistory(MyComponent) -``` - - - -## RouteContext Mixin -RouteContext mixin 提供了一个将 route 组件设置到 context 中的便捷方法。这对于 route 渲染元素并且希望用 [生命周期 mixin](#lifecycle) 来阻止跳转是很有必要的。 - -简单地将 `this.context.route` 添加到组件中。 - - - -## Utilities - -## `useRoutes(createHistory)` -返回一个新的 `createHistory` 函数,它可以用来创建读取 route 的 history 对象。 - -- listen((error, nextState) => {}) -- listenBeforeLeavingRoute(route, (nextLocation) => {}) -- match(location, (error, redirectLocation, nextState) => {}) -- isActive(pathname, query, indexOnly=false) - - -## `match(location, cb)` - -这个函数被用于服务端渲染。它在渲染之前会匹配一组 route 到一个 location,并且在完成时调用 `callback(error, redirectLocation, renderProps)`。 - -传给回调函数去 `match` 的三个参数如下: -* `error`:如果报错时会出现一个 Javascript 的 `Error` 对象,否则是 `undefined`。 -* `redirectLocation`:如果 route 重定向时会有一个 [Location](/docs/Glossary.md#location) 对象,否则是 `undefined`。 -* `renderProps`:当匹配到 route 时 props 应该通过路由的 context,否则是 `undefined`。 - -如果这三个参数都是 `undefined`,这就意味着在给定的 location 中没有 route 被匹配到。 - -**注意:你可能不想在浏览器中用它,除非你做的是异步 route 的服务端渲染。** - - -## `createRoutes(routes)` - -创建并返回一个从给定对象 route 的数组,它可能是 JSX 的 route,一个普通对象的 route,或是其他的数组。 - -#### params -##### `routes` -一个或多个的 [`Route`](#route) 或 [`PlainRoute`](#plainRoute)。 - - -## PropTypes -敬请期待! diff --git a/docs/Glossary.html b/docs/Glossary.html new file mode 100644 index 0000000..4e98c10 --- /dev/null +++ b/docs/Glossary.html @@ -0,0 +1,641 @@ + + + + + + + + 词汇表 | React Router 中文文档 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + +
    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + +

    + + React Router 中文文档 +

    +
    + +
    +
    + + +
    + +   开始纠错

    词汇表

    +

    这是 React Router 库以及文档中常用术语的词汇表,并附有 type signatures(类型签名),以首字母顺序列出。

    + +

    Action

    +
    type Action = 'PUSH' | 'REPLACE' | 'POP';
    +
    +

    Action 描述了URL变化的类型。有以下几种类型:

    +
      +
    • PUSH — 表示有一个新条目加入了 history
    • +
    • REPLACE — 表示 history 中的当前条目被修改
    • +
    • POP — 表示有一个新的当前条目,例如“current pointer(当前指针)”被修改
    • +
    +

    Component

    +
    type Component = ReactClass | string;
    +
    +

    这里的 “组件” 指的是React组件对应的类或者字符串(比如“div”)。基本上,它是任何可以作为第一个参数传入 React.createElement 的对象。

    +

    EnterHook

    +
    type EnterHook = (nextState: RouterState, replaceState: RedirectFunction, callback?: Function) => any;
    +
    +

    enter hook 是一个用户定义的函数,当路由将要开始被渲染之前,它会被调用。它接受下一个 router state 作为第一个参数。第二个参数 replaceState function 可以被用于触发URL的变化。

    +

    如果 enter hook 需要异步执行,那么第三个参数 callback 可以被用于设置回调,以便变换过程继续进行

    +

    注意: 在enter hook中使用 callback 会让变换过程处于阻塞状态,直到 callback 被回调。如果你不能快速地回调的话,这可能会导致整个UI失去响应。

    +

    LeaveHook

    +
    type LeaveHook = () => any;
    +
    +

    leave hook 是一个用户定义的函数,在离开当前路由之前,它会被调用。

    +

    Location

    +
    type Location = {
    +  pathname: Pathname;
    +  search: QueryString;
    +  query: Query;
    +  state: LocationState;
    +  action: Action;
    +  key: LocationKey;
    +};
    +
    +

    location 回答了两个重要的(哲学)问题:

    +
      +
    • 我在哪里?
    • +
    • 我是怎么到这里的?
    • +
    +

    当URL变化时,新的locations将会产生。你可以在history的文档 中更详细地了解loaction。

    +

    LocationKey

    +
    type LocationKey = string;
    +
    +

    location key 是能代表一个 location 的唯一字符串。它能帮助你准确地回答“我在哪”这个问题。

    +

    LocationState

    +
    type LocationState = ?Object;
    +
    +

    location state 是一个由任意数据构成的对象,以便和某个特殊的 location 联系起来。它可以被用于在 location 上绑定一些不能通过URL获取的额外状态。

    +

    这个类型得名于 HTML5 中 pushStatereplaceState 的第一个参数

    +

    Path

    +
    type Path = Pathname + QueryString;
    +
    +

    path(路径) 代表URL的路径。

    +

    Pathname

    +
    type Pathname = string;
    +
    +

    pathname(路径名) 是URL中用于描述分层路径的一部分,包括最前的 /。比如,在 http://example.com/the/path?the=query 这个URL中,/the/path 就是 pathname。它和浏览器中的 window.location.pathname 是同样的意思。

    +

    QueryString

    +
    type QueryString = string;
    +
    +

    query string 是URL中紧跟在 pathname(路径名) 后面的一部分,包括最前的 ?。比如,在 http://example.com/the/path?the=query 这个URL中,?the=query 就是 query string。它和浏览器中的 window.loaction.search 是同样的意思。

    +

    Query

    +
    type Query = Object;
    +
    +

    queryquery string 解析后的版本。

    +

    Params

    +
    type Params = Object;
    +
    +

    params(参数) 指的是由URL中的 pathname(路径名) 经过解析之后生成的键/值对。它的值在通常情况下是字符串类型,只有当一个键对应了多个值时,才可以是数组。

    +

    RedirectFunction

    +
    type RedirectFunction = (state: ?LocationState, pathname: Pathname | Path, query: ?Query) => void;
    +
    +

    redirect function(重定向函数)onEnter hooks 中被用于触发跳转到新的URL。

    +

    Route

    +
    type Route = {
    +  component: RouteComponent;
    +  path: ?RoutePattern;
    +  onEnter: ?EnterHook;
    +  onLeave: ?LeaveHook;
    +};
    +
    +

    route(路由)指定了一个 component(组件) 作为UI的一部分。它应该嵌套在一个树状结构中,以便符合组件的层次。

    +

    它或许有助于让你把路由看做整个 UI 的“入口”。当然,你不需要为组件层中的每个组件都设置路由,只需要为那些因 URL 变化而不同的组件设置即可。

    +

    RouteComponent

    +
    type RouteComponent = Component;
    +
    +

    route component(路由组件) 指的是一个直接被 route(路由)(例如 <Route component>)渲染出的 component(组件)。router(路由器)会从路由组件中创建元素,并且把它们作为 this.props.children 提供给上一层的路由组件。除了 children,路由组件还会接收以下props:

    + +

    RouteConfig

    +
    type RouteConfig = Array<Route>;
    +
    +

    route config(路由配置) 是一个由 route(路由) 组成的数组,它指定了路由器使用路由匹配URL时的先后顺序。

    +

    RouteHook

    +
    type RouteHook = (nextLocation?: Location) => any;
    +
    +

    route hook 是用于防止用户离开某个路由的函数。在正常的路由变换时,它接收下一个 +location 作为参数,并且必须 return false 以取消变换,或者 return 提示消息给用户。 当它在web浏览器的 beforeunload 事件中被调用时,它不会接收任何参数,且必须 return 一个提示信息以取消变换。

    +

    RoutePattern

    +
    type RoutePattern = string;
    +
    +

    route pattern(或者 “path”)是用于描述部分URL特征的字符串。Pattern 会被编译成函数,这些函数会被用于尝试匹配URL。Pattern 必须使用以下特殊字符:

    +
      +
    • :paramName – 在下一个 /?# 前,匹配 URL 的局部。被匹配的部分被称为 param(参数)
    • +
    • () – 匹配URL的一部分,是可选的
    • +
    • * – 匹配任意字符(非贪婪)直到 Pattern 中的下一个字符,如果没有下一个字符,那么会一直匹配到URL尾部。同时生成一个 splat param(参数)
    • +
    +

    Route pattern 都是是相对于parent route(父路由)而言的,除非是以 / 开头,才会从URL的开头进行匹配。

    +

    Router

    +
    type Router = {
    +  transitionTo: (location: Location) => void;
    +  pushState: (state: ?LocationState, pathname: Pathname | Path, query?: Query) => void;
    +  replaceState: (state: ?LocationState, pathname: Pathname | Path, query?: Query) => void;
    +  go(n: Number) => void;
    +  listen(listener: RouterListener) => Function;
    +  match(location: Location, callback: RouterListener) => void;
    +};
    +
    +

    router(路由器)是一个 history 对象(类似于 web 浏览器中的 window.history),用于改变 URL 或者监听 URL 的变化。

    +

    有两个主要接口用于计算路由器的下一个 state

    +
      +
    • history.listen 在有状态且需要在一段时间后更新UI的环境(例如 web 浏览器)下使用。此方法会立即调用它的 listener 参数一次,然后返回一个函数,这个函数必须被调用以停止监听变化。
    • +
    • history.match 一个纯异步函数,它不会更新 history 的内部状态。这使得它非常适合服务器端环境中,在同一时间需要处理多个任务的需求。
    • +
    +

    RouterListener

    +
    type RouterListener = (error: ?Error, nextState: RouterState) => void;
    +
    +

    router listener 是一个用于监听 router(路由器)state 变化的函数。

    +

    RouterState

    +
    type RouterState = {
    +  location: Location;
    +  routes: Array<Route>;
    +  params: Params;
    +  components: Array<Component>;
    +};
    +
    +

    router state 代表当前路由的状态,它包括了:

    + + + +
    + + +
    +
    +
    + + + + + +
    +
    + + + + + + + + + + + + + + + + + + diff --git a/docs/Glossary.md b/docs/Glossary.md deleted file mode 100644 index 7ccbf6f..0000000 --- a/docs/Glossary.md +++ /dev/null @@ -1,265 +0,0 @@ -# 词汇表 -这是 React Router 库以及文档中常用术语的词汇表,并附有 [type signatures(类型签名)](http://flowtype.org/docs/quick-reference.html),以首字母顺序列出。 - -* [Action(动作)](#action) -* [Component(组件)](#component) -* [EnterHook](#enterhook) -* [LeaveHook](#leavehook) -* [Location](#location) -* [LocationKey](#locationkey) -* [LocationState](#locationstate) -* [Path(路径)](#path) -* [Pathname(路径名)](#pathname) -* [Params(参数)](#params) -* [Query](#query) -* [QueryString](#querystring) -* [RedirectFunction(重定向函数)](#redirectfunction) -* [Route(路由)](#routeF) -* [RouteComponent(路由组件)](#routecomponent) -* [RouteConfig(路由配置)](#routeconfig) -* [RouteHook](#routehook) -* [RoutePattern](#routepattern) -* [Router(路由器)](#router) -* [RouterListener](#routerlistener) -* [RouterState](#routerstate) - -## Action - -```js -type Action = 'PUSH' | 'REPLACE' | 'POP'; -``` -*Action* 描述了URL变化的类型。有以下几种类型: - - - `PUSH` — 表示有一个新条目加入了 history - - `REPLACE` — 表示 history 中的当前条目被修改 - - `POP` — 表示有一个新的当前条目,例如“current pointer(当前指针)”被修改 - -## Component - -```js -type Component = ReactClass | string; -``` -这里的 “组件” 指的是React组件对应的类或者字符串(比如“div”)。基本上,它是任何可以作为第一个参数传入 [`React.createElement`](https://facebook.github.io/react/docs/top-level-api.html#react.createelement) 的对象。 - -## EnterHook - -```js -type EnterHook = (nextState: RouterState, replaceState: RedirectFunction, callback?: Function) => any; -``` - -*enter hook* 是一个用户定义的函数,当路由将要开始被渲染之前,它会被调用。它接受下一个 [router state](#routerstate) 作为第一个参数。第二个参数 [`replaceState` function](#redirectfunction) 可以被用于触发URL的变化。 - -如果 enter hook 需要异步执行,那么第三个参数 `callback` 可以被用于设置回调,以便变换过程继续进行 - -**注意:** 在enter hook中使用 `callback` 会让变换过程处于阻塞状态,直到 `callback` 被回调。**如果你不能快速地回调的话,这可能会导致整个UI失去响应。** - - -## LeaveHook - -```js -type LeaveHook = () => any; -``` -*leave hook* 是一个用户定义的函数,在离开当前路由之前,它会被调用。 - -## Location - -```js -type Location = { - pathname: Pathname; - search: QueryString; - query: Query; - state: LocationState; - action: Action; - key: LocationKey; -}; -``` - -*location* 回答了两个重要的(哲学)问题: - - - 我在哪里? - - 我是怎么到这里的? - -当URL变化时,新的locations将会产生。你可以在[`history`的文档 ](https://github.com/rackt/history/blob/master/docs/Location.md)中更详细地了解loaction。 - -## LocationKey - -```js -type LocationKey = string; -``` - -*location key* 是能代表一个 [`location`](#location) 的唯一字符串。它能帮助你准确地回答“我在哪”这个问题。 - - -## LocationState - -```js -type LocationState = ?Object; -``` - -*location state* 是一个由任意数据构成的对象,以便和某个特殊的 [`location`](#location) 联系起来。它可以被用于在 location 上绑定一些不能通过URL获取的额外状态。 - - -这个类型得名于 HTML5 中 [`pushState`][pushState] 和 [`replaceState`][replaceState] 的第一个参数 - -[pushState]: https://developer.mozilla.org/en-US/docs/Web/API/History_API#The_pushState()_method -[replaceState]: https://developer.mozilla.org/en-US/docs/Web/API/History_API#The_replaceState()_method - -## Path - -```js -type Path = Pathname + QueryString; -``` -*path(路径)* 代表URL的路径。 - -## Pathname - -```js -type Pathname = string; -``` - -*pathname(路径名)* 是URL中用于描述分层路径的一部分,包括最前的 `/`。比如,在 `http://example.com/the/path?the=query` 这个URL中,`/the/path` 就是 pathname。它和浏览器中的 `window.location.pathname` 是同样的意思。 - - -## QueryString - -```js -type QueryString = string; -``` - -*query string* 是URL中紧跟在 [pathname(路径名)](#pathname) 后面的一部分,包括最前的 `?`。比如,在 `http://example.com/the/path?the=query` 这个URL中,`?the=query` 就是 query string。它和浏览器中的 `window.loaction.search` 是同样的意思。 - - -## Query - -```js -type Query = Object; -``` -*query* 是 [query string](#querystring) 解析后的版本。 - - -## Params - -```js -type Params = Object; -``` - -*params(参数)* 指的是由URL中的 [pathname(路径名)](#pathname) 经过解析之后生成的键/值对。它的值在通常情况下是字符串类型,只有当一个键对应了多个值时,才可以是数组。 - -## RedirectFunction - -```js -type RedirectFunction = (state: ?LocationState, pathname: Pathname | Path, query: ?Query) => void; -``` - -*redirect function(重定向函数)* 在 [`onEnter` hooks](#enterhook) 中被用于触发跳转到新的URL。 - - -## Route - -```js -type Route = { - component: RouteComponent; - path: ?RoutePattern; - onEnter: ?EnterHook; - onLeave: ?LeaveHook; -}; -``` - -*route(路由)*指定了一个 [component(组件)](#component) 作为UI的一部分。它应该嵌套在一个树状结构中,以便符合组件的层次。 - - -它或许有助于让你把路由看做整个 UI 的“入口”。当然,你不需要为组件层中的每个组件都设置路由,只需要为那些因 URL 变化而不同的组件设置即可。 - - -## RouteComponent - -```js -type RouteComponent = Component; -``` - -*route component(路由组件)* 指的是一个直接被 [route(路由)](#route)(例如 ``)渲染出的 [component(组件)](#component)。router(路由器)会从路由组件中创建元素,并且把它们作为 `this.props.children` 提供给上一层的路由组件。除了 `children`,路由组件还会接收以下props: - - - `router` – [router(路由器)](#router)实例 - - `location` – 当前的 [location](#location) - - `params` – 当前的 [params(参数)](#params) - - `route` – 声明了这个组件的 [route(路由)](#route) - - `routeParams` – 在路由的 [`path`](#routepattern) 中指定参数的集合 - -## RouteConfig - -```js -type RouteConfig = Array; -``` - -*route config(路由配置)* 是一个由 [route(路由)](#route) 组成的数组,它指定了路由器使用路由匹配URL时的先后顺序。 - - -## RouteHook - -```js -type RouteHook = (nextLocation?: Location) => any; -``` - -*route hook* 是用于防止用户离开某个路由的函数。在正常的路由变换时,它接收下一个 -[location](#location) 作为参数,并且必须 `return false` 以取消变换,或者 `return` 提示消息给用户。 当它在web浏览器的 `beforeunload ` 事件中被调用时,它不会接收任何参数,且必须 `return` 一个提示信息以取消变换。 - - -## RoutePattern - -```js -type RoutePattern = string; -``` - -*route pattern*(或者 “path”)是用于描述部分URL特征的字符串。Pattern 会被编译成函数,这些函数会被用于尝试匹配URL。Pattern 必须使用以下特殊字符: - - - `:paramName` – 在下一个 `/`、`?` 或 `#` 前,匹配 URL 的局部。被匹配的部分被称为 [param(参数)](#params) - - `()` – 匹配URL的一部分,是可选的 - - `*` – 匹配任意字符(非贪婪)直到 Pattern 中的下一个字符,如果没有下一个字符,那么会一直匹配到URL尾部。同时生成一个 `splat` [param(参数)](#params参数) - -Route pattern 都是是相对于parent route(父路由)而言的,除非是以 `/` 开头,才会从URL的开头进行匹配。 - -## Router - -```js -type Router = { - transitionTo: (location: Location) => void; - pushState: (state: ?LocationState, pathname: Pathname | Path, query?: Query) => void; - replaceState: (state: ?LocationState, pathname: Pathname | Path, query?: Query) => void; - go(n: Number) => void; - listen(listener: RouterListener) => Function; - match(location: Location, callback: RouterListener) => void; -}; -``` - -*router(路由器)*是一个 [`history`](http://rackt.github.io/history) 对象(类似于 web 浏览器中的 `window.history`),用于改变 URL 或者监听 URL 的变化。 - -有两个主要接口用于计算路由器的下一个 [state](#routerstate): - -- `history.listen` 在有状态且需要在一段时间后更新UI的环境(例如 web 浏览器)下使用。此方法会立即调用它的 `listener` 参数一次,然后返回一个函数,这个函数必须被调用以停止监听变化。 -- `history.match` 一个纯异步函数,它不会更新 history 的内部状态。这使得它非常适合服务器端环境中,在同一时间需要处理多个任务的需求。 - -## RouterListener - -```js -type RouterListener = (error: ?Error, nextState: RouterState) => void; -``` - -*router listener* 是一个用于监听 [router(路由器)](#router) 下 [state](#routerstate) 变化的函数。 - -## RouterState - -```js -type RouterState = { - location: Location; - routes: Array; - params: Params; - components: Array; -}; -``` - -*router state* 代表当前路由的状态,它包括了: - - - 当前的 [`location`](#location) - - 匹配当前 location 的 [`routes(路由)`](#route) 的数组 - - 由 URL 解析生成的 [`params(参数)`](#params) 对象 - - 当前页渲染的 [`components(组件)`](#component) 组成的数组,并按照层级排列。 diff --git a/docs/Introduction.html b/docs/Introduction.html new file mode 100644 index 0000000..264afc5 --- /dev/null +++ b/docs/Introduction.html @@ -0,0 +1,670 @@ + + + + + + + + 简介 | React Router 中文文档 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + +
    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + +

    + + React Router 中文文档 +

    +
    + +
    +
    + + +
    + +   开始纠错

    简介

    +

    React Router 是一个基于 React 之上的强大路由库,它可以让你向应用中快速地添加视图和数据流,同时保持页面与 URL 间的同步。

    +

    为了向你说明 React Router 解决的问题,让我们先来创建一个不使用它的应用。所有文档中的示例代码都会使用 ES6/ES2015 语法和语言特性

    +

    不使用 React Router

    +
    import React from 'react'
    +import { render } from 'react-dom'
    +
    +const About = React.createClass({/*...*/})
    +const Inbox = React.createClass({/*...*/})
    +const Home = React.createClass({/*...*/})
    +
    +const App = React.createClass({
    +  getInitialState() {
    +    return {
    +      route: window.location.hash.substr(1)
    +    }
    +  },
    +
    +  componentDidMount() {
    +    window.addEventListener('hashchange', () => {
    +      this.setState({
    +        route: window.location.hash.substr(1)
    +      })
    +    })
    +  },
    +
    +  render() {
    +    let Child
    +    switch (this.state.route) {
    +      case '/about': Child = About; break;
    +      case '/inbox': Child = Inbox; break;
    +      default:      Child = Home;
    +    }
    +
    +    return (
    +      <div>
    +        <h1>App</h1>
    +        <ul>
    +          <li><a href="#/about">About</a></li>
    +          <li><a href="#/inbox">Inbox</a></li>
    +        </ul>
    +        <Child/>
    +      </div>
    +    )
    +  }
    +})
    +
    +React.render(<App />, document.body)
    +
    +

    当 URL 的 hash 部分(指的是 # 后的部分)变化后,<App> 会根据 this.state.route 来渲染不同的 <Child>。看起来很直接,但它很快就会变得复杂起来。

    +

    现在设想一下 Inbox 下面嵌套一些分别对应于不同 URL 的 UI 组件,就像下面这样的列表-详情视图:

    +
    path: /inbox/messages/1234
    +
    ++---------+------------+------------------------+
    +| About   |    Inbox   |                        |
    ++---------+            +------------------------+
    +| Compose    Reply    Reply All    Archive      |
    ++-----------------------------------------------+
    +|Movie tomorrow|                                |
    ++--------------+   Subject: TPS Report          |
    +|TPS Report        From:    boss@big.co         |
    ++--------------+                                |
    +|New Pull Reque|   So ...                       |
    ++--------------+                                |
    +|...           |                                |
    ++--------------+--------------------------------+
    +

    还可能有一个状态页,用于在没有选择 message 时展示:

    +
    path: /inbox
    +
    ++---------+------------+------------------------+
    +| About   |    Inbox   |                        |
    ++---------+            +------------------------+
    +| Compose    Reply    Reply All    Archive      |
    ++-----------------------------------------------+
    +|Movie tomorrow|                                |
    ++--------------+   10 Unread Messages           |
    +|TPS Report    |   22 drafts                    |
    ++--------------+                                |
    +|New Pull Reque|                                |
    ++--------------+                                |
    +|...           |                                |
    ++--------------+--------------------------------+
    +

    为了让我们的 URL 解析变得更智能,我们需要编写很多代码来实现指定 URL 应该渲染哪一个嵌套的 UI 组件分支:App -> About, App -> Inbox -> Messages -> Message, App -> Inbox -> Messages -> Stats,等等。

    +

    使用 React Router 后

    +

    让我们用 React Router 重构这个应用。

    +
    import React from 'react'
    +import { render } from 'react-dom'
    +
    +// 首先我们需要导入一些组件...
    +import { Router, Route, Link } from 'react-router'
    +
    +// 然后我们从应用中删除一堆代码和
    +// 增加一些 <Link> 元素...
    +const App = React.createClass({
    +  render() {
    +    return (
    +      <div>
    +        <h1>App</h1>
    +        {/* 把 <a> 变成 <Link> */}
    +        <ul>
    +          <li><Link to="/about">About</Link></li>
    +          <li><Link to="/inbox">Inbox</Link></li>
    +        </ul>
    +
    +        {/*
    +          接着用 `this.props.children` 替换 `<Child>`
    +          router 会帮我们找到这个 children
    +        */}
    +        {this.props.children}
    +      </div>
    +    )
    +  }
    +})
    +
    +// 最后,我们用一些 <Route> 来渲染 <Router>。
    +// 这些就是路由提供的我们想要的东西。
    +React.render((
    +  <Router>
    +    <Route path="/" component={App}>
    +      <Route path="about" component={About} />
    +      <Route path="inbox" component={Inbox} />
    +    </Route>
    +  </Router>
    +), document.body)
    +
    +

    React Router 知道如何为我们搭建嵌套的 UI,因此我们不用手动找出需要渲染哪些 <Child> 组件。举个例子,对于一个完整的 /about 路径,React Router 会搭建出 <App><About /></App>

    +

    在内部,router 会将你树级嵌套格式的 <Route> 转变成路由配置。但如果你不熟悉 JSX,你也可以用普通对象来替代:

    +
    const routes = {
    +  path: '/',
    +  component: App,
    +  childRoutes: [
    +    { path: 'about', component: About },
    +    { path: 'inbox', component: Inbox },
    +  ]
    +}
    +
    +React.render(<Router routes={routes} />, document.body)
    +
    +

    添加更多的 UI

    +

    好了,现在我们准备在 inbox UI 内嵌套 inbox messages。

    +
    // 新建一个组件让其在 Inbox 内部渲染
    +const Message = React.createClass({
    +  render() {
    +    return <h3>Message</h3>
    +  }
    +})
    +
    +const Inbox = React.createClass({
    +  render() {
    +    return (
    +      <div>
    +        <h2>Inbox</h2>
    +        {/* 渲染这个 child 路由组件 */}
    +        {this.props.children || "Welcome to your Inbox"}
    +      </div>
    +    )
    +  }
    +})
    +
    +React.render((
    +  <Router>
    +    <Route path="/" component={App}>
    +      <Route path="about" component={About} />
    +      <Route path="inbox" component={Inbox}>
    +        {/* 添加一个路由,嵌套进我们想要嵌套的 UI 里 */}
    +        <Route path="messages/:id" component={Message} />
    +      </Route>
    +    </Route>
    +  </Router>
    +), document.body)
    +
    +

    现在访问 URL inbox/messages/Jkei3c32 将会匹配到一个新的路由,并且它成功指向了 App -> Inbox -> Message 这个 UI 的分支。

    +
    <App>
    +  <Inbox>
    +    <Message params={ {id: 'Jkei3c32'} } />
    +  </Inbox>
    +</App>
    +

    获取 URL 参数

    +

    为了从服务器获取 message 数据,我们首先需要知道它的信息。当渲染组件时,React Router 会自动向 Route 组件中注入一些有用的信息,尤其是路径中动态部分的参数。我们的例子中,它指的是 :id

    +
    const Message = React.createClass({
    +
    +  componentDidMount() {
    +    // 来自于路径 `/inbox/messages/:id`
    +    const id = this.props.params.id
    +
    +    fetchMessage(id, function (err, message) {
    +      this.setState({ message: message })
    +    })
    +  },
    +
    +  // ...
    +
    +})
    +
    +

    你也可以通过 query 字符串来访问参数。比如你访问 /foo?bar=baz,你可以通过访问 this.props.location.query.bar 从 Route 组件中获得 "baz" 的值。

    +

    这就是 React Router 的奥秘。应用的 UI 以盒子中嵌套盒子的方式来表现;然后你可以让这些盒子与 URL 始终保持同步,而且很容易地把它们链接起来。

    +

    这个关于 路由配置 的文档深入地描述了 router 的功能。

    + + +
    + + +
    +
    +
    + + + + + + + +
    +
    + + + + + + + + + + + + + + + + + + diff --git a/docs/Introduction.md b/docs/Introduction.md deleted file mode 100644 index 95c46be..0000000 --- a/docs/Introduction.md +++ /dev/null @@ -1,235 +0,0 @@ -# 简介 - -React Router 是一个基于 [React](http://facebook.github.io/react/) 之上的强大路由库,它可以让你向应用中快速地添加视图和数据流,同时保持页面与 URL 间的同步。 - -为了向你说明 React Router 解决的问题,让我们先来创建一个不使用它的应用。所有文档中的示例代码都会使用 [ES6/ES2015 语法和语言特性](https://github.com/lukehoban/es6features#readme)。 - -### 不使用 React Router - -```js -import React from 'react' -import { render } from 'react-dom' - -const About = React.createClass({/*...*/}) -const Inbox = React.createClass({/*...*/}) -const Home = React.createClass({/*...*/}) - -const App = React.createClass({ - getInitialState() { - return { - route: window.location.hash.substr(1) - } - }, - - componentDidMount() { - window.addEventListener('hashchange', () => { - this.setState({ - route: window.location.hash.substr(1) - }) - }) - }, - - render() { - let Child - switch (this.state.route) { - case '/about': Child = About; break; - case '/inbox': Child = Inbox; break; - default: Child = Home; - } - - return ( -
    -

    App

    - - -
    - ) - } -}) - -React.render(, document.body) -``` - -当 URL 的 hash 部分(指的是 `#` 后的部分)变化后,`` 会根据 `this.state.route` 来渲染不同的 ``。看起来很直接,但它很快就会变得复杂起来。 - -现在设想一下 `Inbox` 下面嵌套一些分别对应于不同 URL 的 UI 组件,就像下面这样的**列表-详情**视图: - -``` -path: /inbox/messages/1234 - -+---------+------------+------------------------+ -| About | Inbox | | -+---------+ +------------------------+ -| Compose Reply Reply All Archive | -+-----------------------------------------------+ -|Movie tomorrow| | -+--------------+ Subject: TPS Report | -|TPS Report From: boss@big.co | -+--------------+ | -|New Pull Reque| So ... | -+--------------+ | -|... | | -+--------------+--------------------------------+ -``` - -还可能有一个状态页,用于在没有选择 message 时展示: - -``` -path: /inbox - -+---------+------------+------------------------+ -| About | Inbox | | -+---------+ +------------------------+ -| Compose Reply Reply All Archive | -+-----------------------------------------------+ -|Movie tomorrow| | -+--------------+ 10 Unread Messages | -|TPS Report | 22 drafts | -+--------------+ | -|New Pull Reque| | -+--------------+ | -|... | | -+--------------+--------------------------------+ -``` - -为了让我们的 URL 解析变得更智能,我们需要编写很多代码来实现指定 URL 应该渲染哪一个嵌套的 UI 组件分支:`App -> About`, `App -> Inbox -> Messages -> Message`, `App -> Inbox -> Messages -> Stats`,等等。 - -### 使用 React Router 后 - -让我们用 React Router 重构这个应用。 - -```js -import React from 'react' -import { render } from 'react-dom' - -// 首先我们需要导入一些组件... -import { Router, Route, Link } from 'react-router' - -// 然后我们从应用中删除一堆代码和 -// 增加一些 元素... -const App = React.createClass({ - render() { - return ( - - ) - } -}) - -// 最后,我们用一些 来渲染 。 -// 这些就是路由提供的我们想要的东西。 -React.render(( - - - - - - -), document.body) -``` - -React Router 知道如何为我们搭建嵌套的 UI,因此我们不用手动找出需要渲染哪些 `` 组件。举个例子,对于一个完整的 `/about` 路径,React Router 会搭建出 ``。 - -在内部,router 会将你树级嵌套格式的 `` 转变成[路由配置](/docs/Glossary.md#routeconfig)。但如果你不熟悉 JSX,你也可以用普通对象来替代: - -```js -const routes = { - path: '/', - component: App, - childRoutes: [ - { path: 'about', component: About }, - { path: 'inbox', component: Inbox }, - ] -} - -React.render(, document.body) -``` - -## 添加更多的 UI - -好了,现在我们准备在 inbox UI 内嵌套 inbox messages。 - -```js -// 新建一个组件让其在 Inbox 内部渲染 -const Message = React.createClass({ - render() { - return

    Message

    - } -}) - -const Inbox = React.createClass({ - render() { - return ( -
    -

    Inbox

    - {/* 渲染这个 child 路由组件 */} - {this.props.children || "Welcome to your Inbox"} -
    - ) - } -}) - -React.render(( - - - - - {/* 添加一个路由,嵌套进我们想要嵌套的 UI 里 */} - - - - -), document.body) -``` - -现在访问 URL `inbox/messages/Jkei3c32` 将会匹配到一个新的路由,并且它成功指向了 `App -> Inbox -> Message` 这个 UI 的分支。 - -``` - - - - - -``` - -### 获取 URL 参数 - -为了从服务器获取 message 数据,我们首先需要知道它的信息。当渲染组件时,React Router 会自动向 Route 组件中注入一些有用的信息,尤其是路径中动态部分的参数。我们的例子中,它指的是 `:id`。 - -```js -const Message = React.createClass({ - - componentDidMount() { - // 来自于路径 `/inbox/messages/:id` - const id = this.props.match.params.id - - fetchMessage(id, function (err, message) { - this.setState({ message: message }) - }) - }, - - // ... - -}) -``` - -你也可以通过 query 字符串来访问参数。比如你访问 `/foo?bar=baz`,你可以通过访问 `this.props.location.query.bar` 从 Route 组件中获得 `"baz"` 的值。 - -这就是 React Router 的奥秘。应用的 UI 以盒子中嵌套盒子的方式来表现;然后你可以让这些盒子与 URL 始终保持同步,而且很容易地把它们链接起来。 - -这个关于 [路由配置](/docs/guides/basics/RouteConfiguration.md) 的文档深入地描述了 router 的功能。 diff --git a/docs/README.md b/docs/README.md deleted file mode 100644 index 0f040cc..0000000 --- a/docs/README.md +++ /dev/null @@ -1,18 +0,0 @@ -## 目录 - -* [简介](/docs/Introduction.md) -* [基础](/docs/guides/basics/README.md) - * [路由配置](/docs/guides/basics/RouteConfiguration.md) - * [路由匹配原理](/docs/guides/basics/RouteMatching.md) - * [History](/docs/guides/basics/Histories.md) - * [默认路由(IndexRoute)与 IndexLink](/docs/guides/basics/IndexRoutes.md) -* [高级用法](/docs/guides/advanced/README.md) - * [动态路由](/docs/guides/advanced/DynamicRouting.md) - * [跳转前确认](/docs/guides/advanced/ConfirmingNavigation.md) - * [服务端渲染](/docs/guides/advanced/ServerRendering.md) - * [组件生命周期](/docs/guides/advanced/ComponentLifecycle.md) - * [组件外部跳转](/docs/guides/advanced/NavigatingOutsideOfComponents.md) -* [升级指南](/docs/UPGRADE_GUIDE.md) -* [排错](/docs/Troubleshooting.md) -* [API 文档](/docs/API.md) -* [词汇表](/docs/Glossary.md) diff --git a/docs/Troubleshooting.html b/docs/Troubleshooting.html new file mode 100644 index 0000000..07feff0 --- /dev/null +++ b/docs/Troubleshooting.html @@ -0,0 +1,490 @@ + + + + + + + + 排错 | React Router 中文文档 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + +
    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + +

    + + React Router 中文文档 +

    +
    + +
    +
    + + +
    + +   开始纠错

    排错

    +

    如何获得上一次路径?

    +
    <Route component={App}>
    +  {/* ... 其它 route */}
    +</Route>
    +
    +const App = React.createClass({
    +  getInitialState() {
    +    return { showBackButton: false }
    +  },
    +
    +  componentWillReceiveProps(nextProps) {
    +    const routeChanged = nextProps.location !== this.props.location
    +    this.setState({ showBackButton: routeChanged })
    +  }
    +})
    +
    + + +
    + + +
    +
    +
    + + + + + + + +
    +
    + + + + + + + + + + + + + + + + + + diff --git a/docs/Troubleshooting.md b/docs/Troubleshooting.md deleted file mode 100644 index 1c30763..0000000 --- a/docs/Troubleshooting.md +++ /dev/null @@ -1,20 +0,0 @@ -# 排错 - -### 如何获得上一次路径? - -```js - - {/* ... 其它 route */} - - -const App = React.createClass({ - getInitialState() { - return { showBackButton: false } - }, - - componentWillReceiveProps(nextProps) { - const routeChanged = nextProps.location !== this.props.location - this.setState({ showBackButton: routeChanged }) - } -}) -``` diff --git a/docs/UPGRADE_GUIDE.html b/docs/UPGRADE_GUIDE.html new file mode 100644 index 0000000..153f10a --- /dev/null +++ b/docs/UPGRADE_GUIDE.html @@ -0,0 +1,1418 @@ + + + + + + + + 升级指南 | React Router 中文文档 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + +
    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + +

    + + React Router 中文文档 +

    +
    + +
    +
    + + +
    + +   开始纠错

    升级指南

    +

    更多关于 API 升级的细节,请参阅更新日志,可以查看所有相关的 commitissue

    +

    0.13.3 -> 1.0.0

    +

    感谢你的耐心等待,终于迎来了这次重大变更。虽然表面上看来只是更新了一些 API,而实际上为了适用于更大型的应用场景,我们几乎重写了整个代码库。新的 API 提供了按需载入路由和组件、基于 session 的路由匹配、服务端渲染、整合 redux 和 relay 库,等等等等。

    +

    现在,我们来对比一下新旧 API 的区别。

    +

    渲染

    +
    // v0.13.x
    +Router.run(routes, (Handler) => {
    +  React.render(<Handler/>, el);
    +})
    +
    +// v1.0
    +React.render(<Router>{routes}</Router>, el)
    +
    +// 类似这样:
    +React.render((
    +  <Router>
    +    <Route path="/" component={App}/>
    +  </Router>
    +), el);
    +
    +// 当然也可以这样
    +React.render(<Router routes={routes}/>, el)
    +
    +

    Location

    +

    现在,location 被叫做 history(它会映射 location)。你需要从 history导入它们,而不是 react-router。

    +
    // v0.13.x
    +Router.run(routes, Router.BrowserHistory, (Handler) => {
    +  React.render(<Handler/>, el);
    +})
    +
    +// v1.0
    +import createBrowserHistory from 'history/lib/createBrowserHistory'
    +let history = createBrowserHistory()
    +React.render(<Router history={history}>{routes}</Router>, el)
    +
    +

    如果没有指定 history 的类型(就像上面),那你要注意下在升级到 1.0.0 后的异常行为。一个并非你所定义的名为 _kquerystring 和路由所需的 hash 一并出现在了 URL 的后面。类似这样:?_k=umhx1s

    +

    这是有意为之的,它是 createHashHistory 部分的内容(也是当你没有指定时,默认的 history 方法)。你可以在这里了解更多关于它的特性,详细的文档在这里

    +

    Route 配置

    +

    你依旧可以像上面那样嵌套路由,路径同样也会从父组件继承而来,不过属性名称有变化。

    +
    // v0.13.x
    +<Route name="about" handler={About}/>
    +
    +// v1.0
    +<Route path="about" component={About}/>
    +
    +

    具名路由已被移除(现在可以查看相关的讨论

    +

    NotFound 路由

    +

    NotFound 确实搞晕了好多人,搞不清楚是 API 中找不到资源还是没有可匹配的路由。而实际上它仅仅是一个简单的 * 路径,我们已经彻底移除了它。

    +
    // v0.13.x
    +<NotFoundRoute handler={NoMatch}/>
    +
    +// v1.0
    +<Route path="*" component={NoMatch}/>
    +
    +

    Redirect 路由

    +
      +
    • 没有增加参数
    • +
    • from 必须使用绝对路径
    • +
    +
    // v0.13.x
    +<Redirect from="some/where/:id" to="somewhere/else/:id" params={{id: 2}}/>
    +
    +// v1.0
    +// 可以像上面一样正常工作,除了去掉 params 参数,将它们放到了路径当中
    +<Redirect from="/some/where/:id" to="/somewhere/else/2"/>
    +
    + +

    path / params

    +
    // v0.13.x
    +<Link to="user" params={{userId: user.id}}>Mateusz</Link>
    +
    +// v1.0
    +// 由于具名路由被移除,链接改为完成路径,你不再需要获取每个参数的名称。同时,字符串插值新特性非常棒。
    +// 注意,query 并没有改变。
    +<Link to={`/users/${user.id}`}>Mateusz</Link>
    +
    +

    “active” 类

    +

    在 0.13.x link 组件会默认添加 “active” 类,你可以通过 activeClassName 重写它,或者提供 activeStyle。而事实上,绝大多数 link 并不需要它,并且检测起来(目前来看)还是很昂贵的。

    +

    Link 不会默认添加 “active” 类,你可以选择增加一个;如果没有 activeClassName 或者 activeStyle,即便被激活,也不会去检测 link

    +
    // v0.13.x
    +<Link to="about">About</Link>
    +
    +// v1.0
    +<Link to="/about" activeClassName="active">About</Link>
    +
    +

    链接到默认路由

    +

    由于具名路由被移除,如果默认路由是 /,指向 /link 就会一直处于激活状态。所以,我们介绍的 IndexLink 仅仅是当默认路由处于激活状态时。

    +

    注意:DefaultRoute 已经废弃。

    +
    // v0.13.x
    +// 配置路由
    +<Route path="/" handler={App}>
    +  <DefaultRoute name="home" handler={Home}/>
    +  <Route name="about" handler={About}/>
    +</Route>
    +
    +// 仅仅在 home 被激活是它才会被激活,在 about 激活时则不会
    +<Link to="home">Home</Link>
    +
    +// v1.0
    +<Route path="/" component={App}>
    +  <IndexRoute component={Home}/>
    +  <Route path="about" component={About}/>
    +</Route>
    +
    +// 仅仅在 home 被激活是它才会被激活,在 about 激活时则不会
    +<IndexLink to="/">Home</IndexLink>
    +
    +

    RouteHandler

    +

    RouteHandler 被移除。现在 Router 可以基于激活的路由自动填充组件的 this.props.children

    +
    // v0.13.x
    +<RouteHandler/>
    +<RouteHandler someExtraProp={something}/>
    +
    +// v1.0
    +{this.props.children}
    +{React.cloneElement(this.props.children, {someExtraProp: something })}
    +
    + +

    如果你正在用 Navigation mixin,那么可以使用 History mixin 代替。

    +
    // v0.13.x
    +var Assignment = React.createClass({
    +  mixins: [ Navigation ],
    +  navigateAfterSomethingHappened () {
    +    this.transitionTo('/users', { userId: user.id }, query);
    +    // this.replaceWith('/users', { userId: user.id }, query);
    +  }
    +})
    +
    +// v1.0
    +var Assignment = React.createClass({
    +  mixins: [ History ],
    +  navigateAfterSomethingHappened () {
    +    // 现在的路由构建于 rackt/history 之上,并且它是路由中用于导航的第一类 API
    +    this.history.pushState(null, `/users/${user.id}`, query);
    +    // this.history.replaceState(null, `/users/${user.id}`, query);
    +  }
    +})
    +
    +

    下面的所有 Navigation 方法同样可以在 history 对象中找到,主要的区别还是移除了 params 以及路由名称,仅仅剩下路径名称。

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    v0.13v1.0
    go(n)go(n)
    goBack()goBack()
    goForward()goForward()
    makeHref(routeName, params, query)createHref(pathname, query)
    makePath(routeName, params, query)createPath(pathname, query)
    +

    State mixin

    +
    // v0.13.x
    +var Assignment = React.createClass({
    +  mixins: [ State ],
    +  foo () {
    +    this.getPath()
    +    this.getParams()
    +    // 等...
    +  }
    +})
    +
    +// v1.0
    +// 如果是一个路由组件...
    +<Route component={Assignment} />
    +
    +var Assignment = React.createClass({
    +  foo () {
    +    this.props.location // 包含路径信息
    +    this.props.params // 包含参数
    +    this.props.history.isActive
    +  }
    +})
    +
    +// 如果不是一个路由组件,你需要借助 context 将 location 经组件树传递下去。
    +// 我们也可能提供一个更加高阶组件来帮助你完成这个,不过现在还不行。
    +// 下面看一下借助 context 我们还可以传递哪些信息。
    +var Assignment = React.createClass({
    +  contextTypes: {
    +    location: React.PropTypes.object
    +  },
    +  foo () {
    +    this.context.location
    +  }
    +})
    +
    +

    下面的表格展示了用于替换 State mixin 的方法。如果是一个组件路由的话,可以通过 this.props 获取到

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    v0.13 (this)v1.0 (this.props)
    getPath()location.pathname+location.search
    getPathname()location.pathname
    getParams()params
    getQuery()location.search
    getRoutes()routes
    isActive(to, params, query)history.isActive(pathname, query, onlyActiveOnIndex)
    +

    下面是另外一张表格,展示了在路由组件下借助 this.context 替换 State mixin 的方法。

    + + + + + + + + + + + + + + + + + + + + + + + + + +
    v0.13 (this)v1.0 (this.context)
    getPath()location.pathname+location.search
    getPathname()location.pathname
    getQuery()location.search
    isActive(to, params, query)history.isActive(pathname, query, onlyActiveOnIndex)
    +

    注意,在 v1.0 中并非所有的 State 特性都可以通过 context 访问到。比如,通过 context 不能获取到 params

    +

    Scrolling

    +

    在 0.13.x 中,有两个接口用于还原滚动位置。我们意识到可以在最外层组件创建一个更优雅的实现,并且很快就要去完成,在最终的 1.0 release 之前。不过没必要受到以前路由的约束。

    +

    willTransitionTowillTransitionFrom

    +

    现在,路由定义了该行为:

    +
    // v0.13.x
    +var Home = React.createClass({
    +  statics: {
    +    willTransitionTo (transition, params, query, callback) {
    +    }
    +    willTransitionFrom (component, transition, params, query, callback) {
    +    }
    +  }
    +})
    +
    +// v1.0
    +<Route
    +  component={Home}
    +  onEnter={(location, replaceWith) => {}}
    +  onLeave={() => {}}
    +/>
    +
    +

    想要取消一个“transition from”,请参阅跳转前确认部分。

    +

    我们将持续更新

    +

    有很多旧的 API 已被我们舍弃,烦请详读新的文档,帮助我们完善它。感谢!

    +

    0.13.2 -> 0.13.3

    +

    Like many others in the community, we misunderstood the "mixins are +going away" sentiment. Mixins, along with React.createClass are not +going away any time soon, and definitely not until ES6 classes have +better answers to replace what mixins do (like decorators).

    +

    So, don't access context, use the mixins, sorry for the churn, we know +it can be frustrating.

    +

    Upgrade path from 0.13.2 to 0.13.3 is to put your code back to how +it was in 0.12.x. The context stuff will still work, so you can do it +incrementally.

    +

    0.12.x -> 0.13.2 (PLEASE SKIP THIS)

    +

    SKIP THIS UPGRADE AND GO STRAIGHT TO 0.13.3

    +

    0.13.3 has the same API as 0.12.x, so please upgrade to 0.13.3 and +skip the 0.13.0-0.13.2 stuff and leave your code alone :)

    +

    React introduced the ability to use ES6 classes for component +definitions, which has the side-effect of mixins not being "the thing" +anymore. Our mixins like State and Navigation just proxied calls to +some methods on an undocumented feature of React called context, that +in turn called methods on the router instance under the hood.

    +

    Without mixins we needed a way for you to get access to these methods. +We decided the simplest solution was to stop hiding the router instance +and just put the whole thing on context.

    +

    You can think about context as values that are floating around a render +tree that parent components (Handler in the Router.run callback) can +explicitly define and descendent components can explicitly ask for. The +stuff on context doesn't show up in a component unless you ask for it.

    +

    Note: You can still use our mixins, you'll just get a deprecation warning.

    +
    // 0.12.x
    +var Foo = React.createClass({
    +  mixins: [ Router.State ],
    +  render: function () {
    +    var id = this.getParams().id;
    +    var searchTerm = this.getQuery().searchTerm;
    +    // etc. ...
    +  }
    +});
    +
    +// 0.13.x w/o ES6 fanciness
    +var Foo = React.createClass({
    +  contextTypes: {
    +    router: React.PropTypes.func
    +  },
    +
    +  render: function () {
    +    var router = this.context.router;
    +    var id = router.getCurrentParams().id;
    +    var searchTerm = router.getCurrentQuery().searchTerm;
    +    // etc.
    +  }
    +});
    +
    +// 0.13.x w/ ES6 fanciness
    +class Foo extends React.Component {
    +  render () {
    +    var { router } = this.context;
    +    var id = router.getCurrentParams().id;
    +    var searchTerm = router.getCurrentQuery().searchTerm;
    +    // etc.
    +  }
    +}
    +
    +Foo.contextTypes = {
    +  router: React.PropTypes.func
    +};
    +
    +

    Most of the time we prefer to just pass the state down the props tree +and not mess with context:

    +
    Router.run(routes, (Handler, state) => {
    +  React.render(<Handler {...state}/>, document.body);
    +});
    +
    +// and then when rendering route handlers, keep passing it down
    +<RouteHandler {...this.props}/>
    +
    +// and then in your methods you have what you need on props
    +var id = this.props.params.id;
    +var searchTerm = this.props.query.searchTerm;
    +
    +

    0.11.x -> 0.12.0

    +

    transition.wait was removed, you now use a callback instead:

    +
    // 0.11.x
    +var SomeHandler = React.createClass({
    +  statics: {
    +    willTransitionTo (transition) {
    +      transition.wait(somePromise());
    +    }
    +  }
    +});
    +
    +// 0.12.0
    +var SomeHandler = React.createClass({
    +  statics: {
    +    willTransitionTo (transition, params, query, callback) {
    +      somePromise().then(callback);
    +    }
    +  }
    +});
    +
    +

    0.10.x -> 0.11.x

    +

    The router changed a lot in this release. While you won't have to +change too much of your app, you will have to change it in a lot of +places. The fundamental change is that you, rather than the router, get +to have control of your view instances.

    +

    If you find anything is missing from this list, please open an issue and +we will get it added here ASAP.

    +

    React 0.12

    +

    You must upgrade to 0.12.x before you can use version 0.11.x of the +router.

    +

    <Routes/> and starting the router

    +

    <Routes/> is gone, there is a new API that gives you complete control +of your views.

    +
    // 0.10.x
    +var routes = (
    +  <Routes location="history">
    +    <Route handler={App}>
    +      <Route name="dashboard" handler={Dashboard}/>
    +    </Route>
    +  </Routes>
    +);
    +
    +React.render(routes, el);
    +
    +// 0.11.x
    +var routes = (
    +  <Route handler={App}>
    +    <Route name="dashboard" handler={Dashboard}/>
    +  </Route>
    +);
    +
    +Router.run(routes, Router.HistoryLocation, function (Handler) {
    +  React.render(<Handler/>, el);
    +});
    +
    +// or default to hash location
    +Router.run(routes, function (Handler) {
    +  React.render(<Handler/>, el);
    +});
    +
    +

    this.props.activeRouteHandler() -> <RouteHandler/>

    +
    // 0.10.x
    +var Something = React.createClass({
    +  render: function () {
    +    return (
    +      <div>
    +        <this.props.activeRouteHandler />
    +      </div>
    +    );
    +  }
    +});
    +
    +// 0.11.x
    +var RouteHandler = Router.RouteHandler;
    +
    +var Something = React.createClass({
    +  render: function () {
    +    return (
    +      <div>
    +        <RouteHandler />
    +      </div>
    +    );
    +  }
    +});
    +
    +

    this.props.params and this.props.query

    +

    They are no longer available on props, use the State mixin.

    +
    // 0.10.x
    +var Something = React.createClass({
    +  render: function () {
    +    var name = this.props.params.name;
    +    var something = this.props.query.something;
    +    // ...
    +  }
    +});
    +
    +// 0.11.x
    +
    +// pass it down the view hierarchy to get the same lifecycle hooks to
    +// trigger as before
    +Router.run(routes, function (Handler, state) {
    +  React.render(<Handler params={state.params} query={state.query} />, el);
    +  // make sure to `<RouteHandler {...this.props}/>` to continue
    +  // passing it down the hierarchy
    +});
    +
    +// or use the `State` mixin
    +var Something = React.createClass({
    +  mixins: [ Router.State ],
    +  render: function () {
    +    var name = this.getParams().name;
    +    var something = this.getQuery().something;
    +    // ...
    +  }
    +});
    +
    +// Also, if you're using a flux-style app, you can trigger a "transition"
    +// action in the `run` callback with the params/query in the payload, then
    +// subscribe in your handlers to the store that grabs the data.
    +
    +

    ActiveState -> State, and methods too

    +

    This mixin's name has changed, and all of its methods that had the word +active in it, too. For example, getActiveParams() becomes getParams().

    +
    // v0.10.x
    +var Something = React.createClass({
    +  mixins: [ Router.ActiveState ],
    +  render: function () {
    +    var name = this.getActiveParams().name;
    +    // ...
    +  }
    +});
    +
    +// v0.11.x
    +var Something = React.createClass({
    +  mixins: [ Router.State ]
    +  render: function () {
    +    var name = this.getParams().name;
    +    // ...
    +  }
    +});
    +
    +

    CurrentPath -> State

    +

    You can find this.getPath() on the Router.State mixin.

    +
    // v0.10.x
    +var Something = React.createClass({
    +  mixins: [ Router.CurrentPath ],
    +  render: function () {
    +    var path = this.getCurrentPath();
    +    // ...
    +  }
    +});
    +
    +// v0.11.x
    +var Something = React.createClass({
    +  mixins: [ Router.State ],
    +  render: function () {
    +    var path = this.getPath();
    +    // ...
    +  }
    +});
    +
    +

    Route addHandlerKey prop

    +

    This option has been removed, you will need to add handler keys +yourself:

    +
    // 0.10.x
    +<Route handler={App}>
    +  <Route addHandlerKey={true}/>
    +</Route>
    +
    +// 0.11.x
    +var App = React.createClass({
    +  mixins: [ Router.State ],
    +
    +  getHandlerKey: function () {
    +    // this will all depend on your needs, but here's a typical
    +    // scenario that's pretty much what the old prop did
    +    var childDepth = 1; // have to know your depth
    +    var childName = this.getRoutes()[childDepth].name;
    +    var id = this.getParams().id;
    +    var key = childName+id;
    +    return key;
    +  },
    +
    +  render: function () {
    +    return (
    +      <div>
    +        <RouteHandler key={this.getHandlerKey()} />
    +      </div>
    +    );
    +  }
    +});
    +
    +

    <Routes onError={fn}/>

    +

    <Routes/> is gone, instead create a router with your error handler as +an option:

    +
    // 0.10.x
    +<Routes onError={fn}>
    +  // ...
    +</Routes>
    +
    +// 0.11.x
    +var router = Router.create({
    +  onError: fn,
    +  // ...
    +});
    +router.run(callback);
    +
    +

    Router.renderRoutesTo*

    +

    These methods have been removed because you, not the router, are in +control of rendering.

    +
    // v0.10.x
    +Router.renderRoutesToString(routes, path, function (html) {
    + // do something with `html`
    +});
    +
    +// v0.11.x
    +Router.run(routes, path, function (Handler) {
    +  var html = React.renderToString(<Handler/>);
    +});
    +
    +

    Route Props Passed to Handlers

    +

    In 0.10.x you could add props to your route that would make their way +down to your handlers. While convenient, conflating routes with their +handlers was confusing to a lot of folks.

    +

    To get the same effect, you can either create your handlers with a +function and close over the information you need, or simply define those +properties on your handlers.

    +
    // 0.10.x
    +<Route name="users" foo="bar" handler={Something}/>
    +
    +var Something = React.createClass({
    +  render () {
    +    return <div>{this.props.name} {this.props.foo}</div>
    +  }
    +});
    +
    +// 0.11.x
    +
    +// close over technique
    +<Route name="users" handler={makeSomething("users", "bar")}/>
    +
    +function makeSomething(name, foo) {
    +  return React.createClass({
    +    render () {
    +      return <div>{name} {foo}</div>
    +    }
    +  });
    +}
    +
    +// handler definition technique
    +<Route name="users" handler={Something}/>
    +
    +var Something = React.createClass({
    +  foo: "bar",
    +  name: "users",
    +  render () {
    +    return <div>{this.name} {this.foo}</div>
    +  }
    +});
    +
    +

    0.9.x -> 0.10.x

    +

    Nothing changed, this was simply React 0.12.0 compatibility. Note, +your code needs to use the React 0.11.x API for things to work, there +will be lots of warnings in the console.

    +

    0.7.x -> 0.9.x

    +

    ActiveState mixin isActive

    +

    isActive is now an instance method.

    +
    // 0.7.x
    +var SomethingActive = React.createClass({
    +  mixins: [ActiveState],
    +
    +  render: function () {
    +    var isActive = SomethingActive.isActive(...);
    +  }
    +});
    +
    +// 0.9.x
    +var SomethingActive = React.createClass({
    +  mixins: [ActiveState],
    +
    +  render: function () {
    +    var isActive = this.isActive(...);
    +  }
    +});
    +
    +

    <Routes onActiveStateChange/> -> <Routes onChange />

    +
    // 0.7.x
    +<Routes onActiveStateChange={fn} />
    +
    +function fn(nextState) {}
    +
    +// 0.9.x
    +<Routes onChange={fn} />
    +
    +function fn() {
    +  // no arguments
    +  // `this` is the routes instance
    +  // here are some useful methods to get at the data you probably need
    +  this.getCurrentPath();
    +  this.getActiveRoutes();
    +  this.getActiveParams();
    +  this.getActiveQuery();
    +}
    +
    +

    . in params support

    +

    . used to be a delimiter like /, but now it's a valid character in +your params.

    +

    transition.retry()

    +

    transition.retry() used to use transitionTo, creating a new history +entry, it now uses replaceWith.

    +
    // 0.7.x
    +React.createClass({
    +  login: function () {
    +    // ...
    +    transition.retry();
    +  }
    +});
    +
    +// 0.9.x
    +React.createClass({
    +  mixins: [Navigation],
    +  login: function () {
    +    // ...
    +    this.transitionTo(transition.path);
    +  }
    +});
    +
    +

    Returning promises from transition hooks

    +

    Transition hooks are now sync, unless you opt-in to async with +transition.wait(promise).

    +
    // 0.7.x
    +React.createClass({
    +  statics: {
    +    willTransitionTo: function (transition) {
    +      return somePromise();
    +    }
    +  }
    +});
    +
    +// 0.9.x
    +React.createClass({
    +  statics: {
    +    willTransitionTo: function (transition) {
    +      transition.wait(somePromise());
    +    }
    +  }
    +});
    +
    +

    preserveScrollPosition -> scrollBehavior

    +

    preserveScrollPosition was totally broken and should have been named +perverseScrollPosition.

    +

    There are now three scroll behaviors you can use:

    +
      +
    • 'browser'
    • +
    • 'scrollToTop'
    • +
    • 'none'
    • +
    +

    browser is the default, and imitates what browsers do in a typical +page reload scenario (preserves scroll positions when using the back +button, scrolls up when you come to a new page, etc.) Also, you can no +longer specify scroll behavior per <Route/> anymore, only <Routes/>

    +
    <Routes scrollBehavior="scrollToTop"/>
    +

    RouteStore

    +

    This was not a public module, but we know some people were using it. +It's gone now. We have made getting at the current routes incredibly +convenient now with additions to the ActiveState mixin.

    +

    Router.transitionTo, replaceWith, goBack

    +

    These methods have been moved to mixins.

    +
    var Router = require('react-router');
    +
    +// 0.7.x
    +React.createClass({
    +  whenever: function () {
    +    Router.transitionTo('something');
    +    Router.replaceWith('something');
    +    Router.goBack();
    +  }
    +});
    +
    +// 0.9.x
    +var Navigation = Router.Navigation;
    +
    +React.createClass({
    +  mixins: [Navigation],
    +  whenever: function () {
    +    this.transitionTo('something');
    +    this.replaceWith('something');
    +    this.goBack();
    +  }
    +});
    +
    +

    <Routes onTransitionError onAbortedTransition/>

    +

    These were removed, there is no upgrade path in 0.9.0 but we will have +something soon. These weren't intended to be used.

    +

    ActiveState lifecycle method updateActiveState removed

    +

    We didn't actually need this. Just use this.isActive(to, params, +query).

    +

    AsyncState mixin removed

    +

    There is no upgrade path. Just use comoponentDidMount to request +state. This was some groundwork for server-side rendering but we are +going a different direction now (using props passed in to route +handlers) so we've removed it.

    +

    0.7.x -> 0.8.x

    +

    Please don't upgrade to 0.8.0, just skip to 0.9.x.

    +

    0.8.0 had some transient mixins we didn't intend to document, but had +some miscommunication :(. If you were one of three people who used some +of these mixins and need help upgrading from 0.8.0 -> 0.9.x find us on +freenode in #rackt or open a ticket. Thanks!

    +

    0.6.x -> 0.7.x

    +

    The package root modules were removed. Please import modules from the +Router default export.

    +
    // 0.6.x
    +var Link = require('react-router/Link');
    +
    +// 0.7.x
    +var Router = require('react-router');
    +var Link = Router.Link;
    +
    +

    0.5.x -> 0.6.x

    +

    Path Matching

    +

    Paths that start with / are absolute and work exactly as they used to. +Paths that don't start with / are now relative, meaning they extend +their parent route.

    +

    Simply add / in front of all your paths to keep things working.

    +
    <!-- 0.5.x -->
    +<Route path="/foo">
    +  <Route path="bar"/>
    +</Route>
    +
    +<!-- 0.6.x -->
    +<Route path="/foo">
    +  <Route path="/bar"/>
    +</Route>
    +
    +

    Though you may want to embrace this new feature:

    +
    <!-- 0.5.x -->
    +<Route path="/course/:courseId">
    +  <Route path="/course/:courseId/assignments"/>
    +  <Route path="/course/:courseId/announcements"/>
    +</Route>
    +
    +<!-- 0.6.x -->
    +<Route path="/course/:courseId">
    +  <Route path="assignments"/>
    +  <Route path="announcements"/>
    +</Route>
    +
    +

    Also . is no longer matched in dynamic segments.

    +
    <!-- 0.5.x -->
    +<Route path="/file/:filename" />
    +
    +<!-- 0.6.x -->
    +<Route path="/file/:filename.?:ext?" />
    +
    +<!--
    +  or for a looser match to allow for multiple `.` note that the data
    +  will be available on `this.props.params.splat` instead of
    +  `this.props.params.filename`
    +-->
    +<Route path="/file/*" />
    +
    + +

    Links should now pass their params in the params property, though the +old behavior will still work, you should update your code soon because +it will be removed by v1.0

    +
    // 0.5.x
    +<Link to="user" userId="123"/>
    +
    +// 0.6.x
    +<Link to="user" params={{userId: "123"}}/>
    +
    +

    Dynamic Segments, keys, and lifecycle methods

    +

    If you have dynamic segments and are depending on getInitialState, +componentWillMount, or componentDidMount to fire between transitions +to the same route--like users/123 and users/456--then you have two +options:

    +
      +
    • add addHandlerKey={true} to your route and keep the previous +behavior (but lose out on performance), or
    • +
    • implement componentWillReceiveProps.
    • +
    +
    // 0.5.x
    +<Route handler={User} path="/user/:userId"/>
    +
    +// 0.6.x
    +<Route handler={User} path="/user/:userId" addHandlerKey={true} />
    +
    +// 0.5.x
    +var User = React.createClass({
    +  getInitialState: function () {
    +    return {
    +      user: getUser(this.props.params.userId);
    +    }
    +  }
    +});
    +
    +// 0.6.x
    +var User = React.createClass({
    +  getInitialState: function () {
    +    return this.getState();
    +  },
    +
    +  componentWillReceiveProps: function (newProps) {
    +    this.setState(this.getState(newProps));
    +  },
    +
    +  getState: function (props) {
    +    props = props || this.props;
    +    return {
    +      user: getUser(props.params.userId)
    +    };
    +  }
    +});
    +
    +

    0.4.x -> 0.5.x

    +

    We brought back <Routes/>.

    +
    // 0.4.x
    +var routes = (
    +  <Route handler={App} location="history">
    +    <Route name="about" handler="about"/>
    +  </Route>
    +);
    +
    +// 0.5.x
    +var routes = (
    +  <Routes location="history">
    +    <Route handler={App}>
    +      <Route name="about" handler="about"/>
    +    </Route>
    +  </Routes>
    +);
    +
    +

    0.3.x -> 0.4.x

    +

    NPM users should point their apps to react-router instead of +react-nested-router. Make sure to npm prune!

    +

    0.2.x -> 0.3.x

    +
      +
    • React 0.11.x is now required.
    • +
    • this.props.activeRoute became this.props.activeRouteHandler()
    • +
    +
    // 0.2.x
    +
    +var App = React.createClass({
    +  render: function () {
    +    return (
    +      <div>
    +        {this.props.activeRoute}
    +      </div>
    +    );
    +  }
    +});
    +
    +// 0.3.x
    +var App = React.createClass({
    +  render: function () {
    +    // now you can send extra props to the active route handler
    +    // and use the new jsx syntax
    +    // <this.props.activeRouteHandler extraProp={something}/>
    +    return (
    +      <div>
    +        {this.props.activeRouteHandler()}
    +      </div>
    +    );
    +  }
    +});
    +
    +

    0.1.x -> 0.2.x

    +

    The Router function was removed.

    +
    // 0.1.x
    +var router = Router(routes);
    +router.renderComponent(element);
    +
    +// 0.2.x
    +React.renderComponent(routes, element);
    +
    + + +
    + + +
    +
    +
    + + + + + + + +
    +
    + + + + + + + + + + + + + + + + + + diff --git a/docs/UPGRADE_GUIDE.md b/docs/UPGRADE_GUIDE.md deleted file mode 100644 index 46a326e..0000000 --- a/docs/UPGRADE_GUIDE.md +++ /dev/null @@ -1,1095 +0,0 @@ -升级指南 -============= - -更多关于 API 升级的细节,请参阅[更新日志](https://github.com/rackt/react-router/blob/master/CHANGELOG.md),可以查看所有相关的 `commit` 和 `issue`。 - -0.13.3 -> 1.0.0 ---------------- - -感谢你的耐心等待,终于迎来了这次重大变更。虽然表面上看来只是更新了一些 API,而实际上为了适用于更大型的应用场景,我们几乎重写了整个代码库。新的 API 提供了按需载入路由和组件、基于 session 的路由匹配、服务端渲染、整合 redux 和 relay 库,等等等等。 - -现在,我们来对比一下新旧 API 的区别。 - -### 渲染 - -```js -// v0.13.x -Router.run(routes, (Handler) => { - React.render(, el); -}) - -// v1.0 -React.render({routes}, el) - -// 类似这样: -React.render(( - - - -), el); - -// 当然也可以这样 -React.render(, el) -``` - -### Location - -现在,location 被叫做 history(它会映射 location)。你需要从 [`history` 包](https://github.com/rackt/history)导入它们,而不是 react-router。 - -```js -// v0.13.x -Router.run(routes, Router.BrowserHistory, (Handler) => { - React.render(, el); -}) - -// v1.0 -import createBrowserHistory from 'history/lib/createBrowserHistory' -let history = createBrowserHistory() -React.render({routes}, el) -``` - -如果没有指定 history 的类型(就像上面),那你要注意下在升级到 `1.0.0` 后的异常行为。一个并非你所定义的名为 `_k` 的 `querystring` 和路由所需的 `hash` 一并出现在了 URL 的后面。类似这样:`?_k=umhx1s`。 - -这是有意为之的,它是 [createHashHistory](https://github.com/rackt/react-router/blob/master/docs/guides/basics/Histories.md#createhashhistory) 部分的内容(也是当你没有指定时,默认的 history 方法)。你可以在[这里](https://github.com/rackt/react-router/blob/master/docs/guides/basics/Histories.md#what-is-that-_kckuvup-junk-in-the-url)了解更多关于它的特性,详细的文档在[这里](https://rackt.github.io/history/stable/HashHistoryCaveats.html)。 - -### Route 配置 - -你依旧可以像上面那样嵌套路由,路径同样也会从父组件继承而来,不过属性名称有变化。 - -```js -// v0.13.x - - -// v1.0 - -``` - -具名路由已被移除(现在可以[查看相关的讨论](https://github.com/rackt/react-router/issues/1840)) - -### NotFound 路由 - -NotFound 确实搞晕了好多人,搞不清楚是 API 中找不到资源还是没有可匹配的路由。而实际上它仅仅是一个简单的 `*` 路径,我们已经彻底移除了它。 - -```js -// v0.13.x - - -// v1.0 - -``` - -### Redirect 路由 - -- 没有增加参数 -- `from` 必须使用绝对路径 - -```js -// v0.13.x - - -// v1.0 -// 可以像上面一样正常工作,除了去掉 params 参数,将它们放到了路径当中 - -``` - -### Links - -#### path / params - -```js -// v0.13.x -Mateusz - -// v1.0 -// 由于具名路由被移除,链接改为完成路径,你不再需要获取每个参数的名称。同时,字符串插值新特性非常棒。 -// 注意,query 并没有改变。 -Mateusz -``` - -#### “active” 类 - -在 0.13.x `link` 组件会默认添加 “active” 类,你可以通过 `activeClassName` 重写它,或者提供 `activeStyle`。而事实上,绝大多数 `link` 并不需要它,并且检测起来(目前来看)还是很昂贵的。 - -`Link` 不会默认添加 “active” 类,你可以选择增加一个;如果没有 `activeClassName` 或者 `activeStyle`,即便被激活,也不会去检测 `link`。 - -```js -// v0.13.x -About - -// v1.0 -About -``` - -#### 链接到默认路由 - -由于具名路由被移除,如果默认路由是 `/`,指向 `/` 的 `link` 就会一直处于激活状态。所以,我们介绍的 `IndexLink` 仅仅是当默认路由处于激活状态时。 - -**注意:**`DefaultRoute` 已经废弃。 - -```js -// v0.13.x -// 配置路由 - - - - - -// 仅仅在 home 被激活是它才会被激活,在 about 激活时则不会 -Home - -// v1.0 - - - - - -// 仅仅在 home 被激活是它才会被激活,在 about 激活时则不会 -Home -``` - -### RouteHandler - -`RouteHandler` 被移除。现在 `Router` 可以基于激活的路由自动填充组件的 `this.props.children`。 - -```js -// v0.13.x - - - -// v1.0 -{this.props.children} -{React.cloneElement(this.props.children, {someExtraProp: something })} -``` - -### Navigation Mixin - -如果你正在用 `Navigation` mixin,那么可以使用 `History` mixin 代替。 - -```js -// v0.13.x -var Assignment = React.createClass({ - mixins: [ Navigation ], - navigateAfterSomethingHappened () { - this.transitionTo('/users', { userId: user.id }, query); - // this.replaceWith('/users', { userId: user.id }, query); - } -}) - -// v1.0 -var Assignment = React.createClass({ - mixins: [ History ], - navigateAfterSomethingHappened () { - // 现在的路由构建于 rackt/history 之上,并且它是路由中用于导航的第一类 API - this.history.pushState(null, `/users/${user.id}`, query); - // this.history.replaceState(null, `/users/${user.id}`, query); - } -}) -``` - -下面的所有 `Navigation` 方法同样可以在 `history` 对象中找到,主要的区别还是移除了 `params` 以及路由名称,仅仅剩下路径名称。 - -| v0.13 | v1.0 | -|--------------------------------------|-------------------------------| -| `go(n)` | `go(n)` | -| `goBack()` | `goBack()` | -| `goForward()` | `goForward()` | -| `makeHref(routeName, params, query)` | `createHref(pathname, query)` | -| `makePath(routeName, params, query)` | `createPath(pathname, query)` | - -### State mixin - -```js -// v0.13.x -var Assignment = React.createClass({ - mixins: [ State ], - foo () { - this.getPath() - this.getParams() - // 等... - } -}) - -// v1.0 -// 如果是一个路由组件... - - -var Assignment = React.createClass({ - foo () { - this.props.location // 包含路径信息 - this.props.params // 包含参数 - this.props.history.isActive - } -}) - -// 如果不是一个路由组件,你需要借助 context 将 location 经组件树传递下去。 -// 我们也可能提供一个更加高阶组件来帮助你完成这个,不过现在还不行。 -// 下面看一下借助 context 我们还可以传递哪些信息。 -var Assignment = React.createClass({ - contextTypes: { - location: React.PropTypes.object - }, - foo () { - this.context.location - } -}) -``` - -下面的表格展示了用于替换 `State` mixin 的方法。如果是一个组件路由的话,可以通过 `this.props` 获取到 - -| v0.13 (this) | v1.0 (this.props) | -|-----------------|------------------------------------| -| `getPath()` | `location.pathname+location.search` | -| `getPathname()` | `location.pathname` | -| `getParams()` | `params` | -| `getQuery()` | `location.search` | -| `getRoutes()` | `routes` | -| `isActive(to, params, query)` | `history.isActive(pathname, query, onlyActiveOnIndex)` | - -下面是另外一张表格,展示了在**非**路由组件下借助 `this.context` 替换 `State` mixin 的方法。 - -| v0.13 (this) | v1.0 (this.context) | -|-----------------|------------------------------------| -| `getPath()` | `location.pathname+location.search`| -| `getPathname()` | `location.pathname` | -| `getQuery()` | `location.search` | -| `isActive(to, params, query)` | `history.isActive(pathname, query, onlyActiveOnIndex)` | - -注意,在 v1.0 中并非所有的 `State` 特性都可以通过 `context` 访问到。比如,通过 `context` 不能获取到 `params`。 - -### Scrolling - -在 0.13.x 中,有两个接口用于还原滚动位置。我们意识到可以在最外层组件创建一个更优雅的实现,并且很快就要去完成,在最终的 1.0 release 之前。不过没必要受到以前路由的约束。 - -### `willTransitionTo` 和 `willTransitionFrom` - -现在,路由定义了该行为: - -```js -// v0.13.x -var Home = React.createClass({ - statics: { - willTransitionTo (transition, params, query, callback) { - } - willTransitionFrom (component, transition, params, query, callback) { - } - } -}) - -// v1.0 - {}} - onLeave={() => {}} -/> -``` - -想要取消一个“transition from”,请参阅[跳转前确认](docs/guides/advanced/ConfirmingNavigation.md)部分。 - -### 我们将持续更新 - -有很多旧的 API 已被我们舍弃,烦请详读[新的文档](/docs),帮助我们完善它。感谢! - - -0.13.2 -> 0.13.3 ----------------- - -Like many others in the community, we misunderstood the "mixins are -going away" sentiment. Mixins, along with `React.createClass` are not -going away any time soon, and definitely not until ES6 classes have -better answers to replace what mixins do (like decorators). - -So, don't access context, use the mixins, sorry for the churn, we know -it can be frustrating. - -Upgrade path from `0.13.2` to `0.13.3` is to put your code back to how -it was in `0.12.x`. The context stuff will still work, so you can do it -incrementally. - -0.12.x -> 0.13.2 (PLEASE SKIP THIS) ------------------------------------ - -**SKIP THIS UPGRADE AND GO STRAIGHT TO 0.13.3** - -`0.13.3` has the same API as `0.12.x`, so please upgrade to `0.13.3` and -skip the `0.13.0-0.13.2` stuff and leave your code alone :) - -React introduced the ability to use ES6 classes for component -definitions, which has the side-effect of mixins not being "the thing" -anymore. Our mixins like `State` and `Navigation` just proxied calls to -some methods on an undocumented feature of React called `context`, that -in turn called methods on the router instance under the hood. - -Without mixins we needed a way for you to get access to these methods. -We decided the simplest solution was to stop hiding the router instance -and just put the whole thing on context. - -You can think about context as values that are floating around a render -tree that parent components (`Handler` in the `Router.run` callback) can -explicitly define and descendent components can explicitly ask for. The -stuff on context doesn't show up in a component unless you ask for it. - -**Note:** You can still use our mixins, you'll just get a deprecation warning. - -```js -// 0.12.x -var Foo = React.createClass({ - mixins: [ Router.State ], - render: function () { - var id = this.getParams().id; - var searchTerm = this.getQuery().searchTerm; - // etc. ... - } -}); - -// 0.13.x w/o ES6 fanciness -var Foo = React.createClass({ - contextTypes: { - router: React.PropTypes.func - }, - - render: function () { - var router = this.context.router; - var id = router.getCurrentParams().id; - var searchTerm = router.getCurrentQuery().searchTerm; - // etc. - } -}); - -// 0.13.x w/ ES6 fanciness -class Foo extends React.Component { - render () { - var { router } = this.context; - var id = router.getCurrentParams().id; - var searchTerm = router.getCurrentQuery().searchTerm; - // etc. - } -} - -Foo.contextTypes = { - router: React.PropTypes.func -}; -``` - -Most of the time we prefer to just pass the state down the props tree -and not mess with context: - -```js -Router.run(routes, (Handler, state) => { - React.render(, document.body); -}); - -// and then when rendering route handlers, keep passing it down - - -// and then in your methods you have what you need on props -var id = this.props.params.id; -var searchTerm = this.props.query.searchTerm; -``` - -0.11.x -> 0.12.0 ----------------- - -`transition.wait` was removed, you now use a callback instead: - -```js -// 0.11.x -var SomeHandler = React.createClass({ - statics: { - willTransitionTo (transition) { - transition.wait(somePromise()); - } - } -}); - -// 0.12.0 -var SomeHandler = React.createClass({ - statics: { - willTransitionTo (transition, params, query, callback) { - somePromise().then(callback); - } - } -}); -``` - -0.10.x -> 0.11.x ----------------- - -The router changed **a lot** in this release. While you won't have to -change too much of your app, you will have to change it in a lot of -places. The fundamental change is that you, rather than the router, get -to have control of your view instances. - -If you find anything is missing from this list, please open an issue and -we will get it added here ASAP. - -### React 0.12 - -You must upgrade to `0.12.x` before you can use version `0.11.x` of the -router. - -### `` and starting the router - -`` is gone, there is a new API that gives you complete control -of your views. - -```js -// 0.10.x -var routes = ( - - - - - -); - -React.render(routes, el); - -// 0.11.x -var routes = ( - - - -); - -Router.run(routes, Router.HistoryLocation, function (Handler) { - React.render(, el); -}); - -// or default to hash location -Router.run(routes, function (Handler) { - React.render(, el); -}); -``` - -### `this.props.activeRouteHandler()` -> `` - -```js -// 0.10.x -var Something = React.createClass({ - render: function () { - return ( -
    - -
    - ); - } -}); - -// 0.11.x -var RouteHandler = Router.RouteHandler; - -var Something = React.createClass({ - render: function () { - return ( -
    - -
    - ); - } -}); -``` - -### `this.props.params` and `this.props.query` - -They are no longer available on props, use the `State` mixin. - -```js -// 0.10.x -var Something = React.createClass({ - render: function () { - var name = this.props.params.name; - var something = this.props.query.something; - // ... - } -}); - -// 0.11.x - -// pass it down the view hierarchy to get the same lifecycle hooks to -// trigger as before -Router.run(routes, function (Handler, state) { - React.render(, el); - // make sure to `` to continue - // passing it down the hierarchy -}); - -// or use the `State` mixin -var Something = React.createClass({ - mixins: [ Router.State ], - render: function () { - var name = this.getParams().name; - var something = this.getQuery().something; - // ... - } -}); - -// Also, if you're using a flux-style app, you can trigger a "transition" -// action in the `run` callback with the params/query in the payload, then -// subscribe in your handlers to the store that grabs the data. -``` - -### `ActiveState` -> `State`, and methods too - -This mixin's name has changed, and all of its methods that had the word -`active` in it, too. For example, `getActiveParams()` becomes `getParams()`. - -```js -// v0.10.x -var Something = React.createClass({ - mixins: [ Router.ActiveState ], - render: function () { - var name = this.getActiveParams().name; - // ... - } -}); - -// v0.11.x -var Something = React.createClass({ - mixins: [ Router.State ] - render: function () { - var name = this.getParams().name; - // ... - } -}); -``` - -### `CurrentPath` -> `State` - -You can find `this.getPath()` on the `Router.State` mixin. - -```js -// v0.10.x -var Something = React.createClass({ - mixins: [ Router.CurrentPath ], - render: function () { - var path = this.getCurrentPath(); - // ... - } -}); - -// v0.11.x -var Something = React.createClass({ - mixins: [ Router.State ], - render: function () { - var path = this.getPath(); - // ... - } -}); -``` - -### Route `addHandlerKey` prop - -This option has been removed, you will need to add handler keys -yourself: - -```js -// 0.10.x - - - - -// 0.11.x -var App = React.createClass({ - mixins: [ Router.State ], - - getHandlerKey: function () { - // this will all depend on your needs, but here's a typical - // scenario that's pretty much what the old prop did - var childDepth = 1; // have to know your depth - var childName = this.getRoutes()[childDepth].name; - var id = this.getParams().id; - var key = childName+id; - return key; - }, - - render: function () { - return ( -
    - -
    - ); - } -}); -``` - -### `` - -`` is gone, instead create a router with your error handler as -an option: - -```js -// 0.10.x - - // ... - - -// 0.11.x -var router = Router.create({ - onError: fn, - // ... -}); -router.run(callback); -``` - -### `Router.renderRoutesTo*` - -These methods have been removed because you, not the router, are in -control of rendering. - -```js -// v0.10.x -Router.renderRoutesToString(routes, path, function (html) { - // do something with `html` -}); - -// v0.11.x -Router.run(routes, path, function (Handler) { - var html = React.renderToString(); -}); -``` - -### Route Props Passed to Handlers - -In `0.10.x` you could add props to your route that would make their way -down to your handlers. While convenient, conflating routes with their -handlers was confusing to a lot of folks. - -To get the same effect, you can either create your handlers with a -function and close over the information you need, or simply define those -properties on your handlers. - -```js -// 0.10.x - - -var Something = React.createClass({ - render () { - return
    {this.props.name} {this.props.foo}
    - } -}); - -// 0.11.x - -// close over technique - - -function makeSomething(name, foo) { - return React.createClass({ - render () { - return
    {name} {foo}
    - } - }); -} - -// handler definition technique - - -var Something = React.createClass({ - foo: "bar", - name: "users", - render () { - return
    {this.name} {this.foo}
    - } -}); -``` - -0.9.x -> 0.10.x ---------------- - -Nothing changed, this was simply React `0.12.0` compatibility. Note, -your code needs to use the React `0.11.x` API for things to work, there -will be lots of warnings in the console. - -0.7.x -> 0.9.x --------------- - -### `ActiveState` mixin `isActive` - -`isActive` is now an instance method. - -```js -// 0.7.x -var SomethingActive = React.createClass({ - mixins: [ActiveState], - - render: function () { - var isActive = SomethingActive.isActive(...); - } -}); - -// 0.9.x -var SomethingActive = React.createClass({ - mixins: [ActiveState], - - render: function () { - var isActive = this.isActive(...); - } -}); -``` - -### `` -> `` - -```js -// 0.7.x - - -function fn(nextState) {} - -// 0.9.x - - -function fn() { - // no arguments - // `this` is the routes instance - // here are some useful methods to get at the data you probably need - this.getCurrentPath(); - this.getActiveRoutes(); - this.getActiveParams(); - this.getActiveQuery(); -} -``` - -### `.` in params support - -`.` used to be a delimiter like `/`, but now it's a valid character in -your params. - -### `transition.retry()` - -`transition.retry()` used to use `transitionTo`, creating a new history -entry, it now uses `replaceWith`. - -```js -// 0.7.x -React.createClass({ - login: function () { - // ... - transition.retry(); - } -}); - -// 0.9.x -React.createClass({ - mixins: [Navigation], - login: function () { - // ... - this.transitionTo(transition.path); - } -}); -``` - -### Returning promises from transition hooks - -Transition hooks are now sync, unless you opt-in to async with -`transition.wait(promise)`. - -```js -// 0.7.x -React.createClass({ - statics: { - willTransitionTo: function (transition) { - return somePromise(); - } - } -}); - -// 0.9.x -React.createClass({ - statics: { - willTransitionTo: function (transition) { - transition.wait(somePromise()); - } - } -}); -``` - -### `preserveScrollPosition` -> `scrollBehavior` - -`preserveScrollPosition` was totally broken and should have been named -`perverseScrollPosition`. - - -There are now three scroll behaviors you can use: - -- `'browser'` -- `'scrollToTop'` -- `'none'` - -`browser` is the default, and imitates what browsers do in a typical -page reload scenario (preserves scroll positions when using the back -button, scrolls up when you come to a new page, etc.) Also, you can no -longer specify scroll behavior per `` anymore, only `` - -``` - -``` - -### RouteStore - -This was not a public module, but we know some people were using it. -It's gone now. We have made getting at the current routes incredibly -convenient now with additions to the `ActiveState` mixin. - -### `Router.transitionTo, replaceWith, goBack` - -These methods have been moved to mixins. - -```js -var Router = require('react-router'); - -// 0.7.x -React.createClass({ - whenever: function () { - Router.transitionTo('something'); - Router.replaceWith('something'); - Router.goBack(); - } -}); - -// 0.9.x -var Navigation = Router.Navigation; - -React.createClass({ - mixins: [Navigation], - whenever: function () { - this.transitionTo('something'); - this.replaceWith('something'); - this.goBack(); - } -}); -``` - -### `` - -These were removed, there is no upgrade path in `0.9.0` but we will have -something soon. These weren't intended to be used. - -### `ActiveState` lifecycle method `updateActiveState` removed - -We didn't actually need this. Just use `this.isActive(to, params, -query)`. - -### `AsyncState` mixin removed - -There is no upgrade path. Just use `comoponentDidMount` to request -state. This was some groundwork for server-side rendering but we are -going a different direction now (using props passed in to route -handlers) so we've removed it. - -0.7.x -> 0.8.x --------------- - -Please don't upgrade to `0.8.0`, just skip to `0.9.x`. - -`0.8.0` had some transient mixins we didn't intend to document, but had -some miscommunication :(. If you were one of three people who used some -of these mixins and need help upgrading from `0.8.0 -> 0.9.x` find us on -freenode in `#rackt` or open a ticket. Thanks! - -0.6.x -> 0.7.x --------------- - -The package root modules were removed. Please import modules from the -`Router` default export. - -```js -// 0.6.x -var Link = require('react-router/Link'); - -// 0.7.x -var Router = require('react-router'); -var Link = Router.Link; -``` - -0.5.x -> 0.6.x --------------- - -### Path Matching - -Paths that start with `/` are absolute and work exactly as they used to. -Paths that don't start with `/` are now relative, meaning they extend -their parent route. - -Simply add `/` in front of all your paths to keep things working. - -```xml - - - - - - - - - -``` - -Though you may want to embrace this new feature: - -```xml - - - - - - - - - - - -``` - -Also `.` is no longer matched in dynamic segments. - -```xml - - - - - - - - -``` - -### Link params - -Links should now pass their params in the `params` property, though the -old behavior will still work, you should update your code soon because -it will be removed by `v1.0` - -```js -// 0.5.x - - -// 0.6.x - -``` - -### Dynamic Segments, keys, and lifecycle methods - -If you have dynamic segments and are depending on `getInitialState`, -`componentWillMount`, or `componentDidMount` to fire between transitions -to the same route--like `users/123` and `users/456`--then you have two -options: - -- add `addHandlerKey={true}` to your route and keep the previous - behavior (but lose out on performance), or -- implement `componentWillReceiveProps`. - -```js -// 0.5.x - - -// 0.6.x - - -// 0.5.x -var User = React.createClass({ - getInitialState: function () { - return { - user: getUser(this.props.params.userId); - } - } -}); - -// 0.6.x -var User = React.createClass({ - getInitialState: function () { - return this.getState(); - }, - - componentWillReceiveProps: function (newProps) { - this.setState(this.getState(newProps)); - }, - - getState: function (props) { - props = props || this.props; - return { - user: getUser(props.params.userId) - }; - } -}); -``` - -0.4.x -> 0.5.x --------------- - -We brought back ``. - -```js -// 0.4.x -var routes = ( - - - -); - -// 0.5.x -var routes = ( - - - - - -); -``` - -0.3.x -> 0.4.x --------------- - -NPM users should point their apps to `react-router` instead of -`react-nested-router`. Make sure to `npm prune`! - -0.2.x -> 0.3.x --------------- - -- React `0.11.x` is now required. -- `this.props.activeRoute` became `this.props.activeRouteHandler()` - -```js -// 0.2.x - -var App = React.createClass({ - render: function () { - return ( -
    - {this.props.activeRoute} -
    - ); - } -}); - -// 0.3.x -var App = React.createClass({ - render: function () { - // now you can send extra props to the active route handler - // and use the new jsx syntax - // - return ( -
    - {this.props.activeRouteHandler()} -
    - ); - } -}); -``` - -0.1.x -> 0.2.x --------------- - -The `Router` function was removed. - -```js -// 0.1.x -var router = Router(routes); -router.renderComponent(element); - -// 0.2.x -React.renderComponent(routes, element); -``` diff --git a/docs/guides/advanced/ComponentLifecycle.html b/docs/guides/advanced/ComponentLifecycle.html new file mode 100644 index 0000000..d3d92b4 --- /dev/null +++ b/docs/guides/advanced/ComponentLifecycle.html @@ -0,0 +1,647 @@ + + + + + + + + 组件生命周期 | React Router 中文文档 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + +
    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + +

    + + React Router 中文文档 +

    +
    + +
    +
    + + +
    + +   开始纠错

    组件生命周期

    +

    在开发应用时,理解路由组件的生命周期是非常重要的。 +后面我们会以获取数据这个最常见的场景为例,介绍一下路由改变时,路由组件生命周期的变化情况。

    +

    路由组件的生命周期和 React 组件相比并没有什么不同。 +所以让我们先忽略路由部分,只考虑在不同 URL 下,这些组件是如何被渲染的。

    +

    路由配置如下:

    +
    <Route path="/" component={App}>
    +  <IndexRoute component={Home}/>
    +  <Route path="invoices/:invoiceId" component={Invoice}/>
    +  <Route path="accounts/:accountId" component={Account}/>
    +</Route>
    +
    +

    路由切换时,组件生命周期的变化情况

    +

    1. 当用户打开应用的 '/' 页面

    + + + + + + + + + + + + + + + + + + + + + + + + + +
    组件生命周期
    AppcomponentDidMount
    HomecomponentDidMount
    InvoiceN/A
    AccountN/A
    +

    2. 当用户从 '/' 跳转到 '/invoice/123'

    + + + + + + + + + + + + + + + + + + + + + + + + + +
    组件生命周期
    AppcomponentWillReceiveProps, componentDidUpdate
    HomecomponentWillUnmount
    InvoicecomponentDidMount
    AccountN/A
    +
      +
    • App 从 router 中接收到新的 props(例如 childrenparamslocation 等数据), +所以 App 触发了 componentWillReceivePropscomponentDidUpdate 两个生命周期方法
    • +
    • Home 不再被渲染,所以它将被移除
    • +
    • Invoice 首次被挂载
    • +
    +

    3. 当用户从 /invoice/123 跳转到 /invoice/789

    + + + + + + + + + + + + + + + + + + + + + + + + + +
    组件生命周期
    AppcomponentWillReceiveProps, componentDidUpdate
    HomeN/A
    InvoicecomponentWillReceiveProps, componentDidUpdate
    AccountN/A
    +

    所有的组件之前都已经被挂载, +所以只是从 router 更新了 props.

    +

    4. 当从 /invoice/789 跳转到 /accounts/123

    + + + + + + + + + + + + + + + + + + + + + + + + + +
    组件生命周期
    AppcomponentWillReceiveProps, componentDidUpdate
    HomeN/A
    InvoicecomponentWillUnmount
    AccountcomponentDidMount
    +

    获取数据

    +

    虽然还有其他通过 router 获取数据的方法, +但是最简单的方法是通过组件生命周期 Hook 来实现。 +前面我们已经理解了当路由改变时组件生命周期的变化, +我们可以在 Invoice 组件里实现一个简单的数据获取功能。

    +
    let Invoice = React.createClass({
    +
    +  getInitialState () {
    +    return {
    +      invoice: null
    +    }
    +  },
    +
    +  componentDidMount () {
    +    // 上面的步骤2,在此初始化数据
    +    this.fetchInvoice()
    +  },
    +
    +  componentDidUpdate (prevProps) {
    +    // 上面步骤3,通过参数更新数据
    +    let oldId = prevProps.params.invoiceId
    +    let newId = this.props.params.invoiceId
    +    if (newId !== oldId)
    +      this.fetchInvoice()
    +  },
    +
    +  componentWillUnmount () {
    +    // 上面步骤四,在组件移除前忽略正在进行中的请求
    +    this.ignoreLastFetch = true
    +  },
    +
    +  fetchInvoice () {
    +    let url = `/api/invoices/${this.props.params.invoiceId}`
    +    this.request = fetch(url, (err, data) => {
    +      if (!this.ignoreLastFetch)
    +        this.setState({ invoice: data.invoice })
    +    })
    +  },
    +
    +  render () {
    +    return <InvoiceView invoice={this.state.invoice}/>
    +  }
    +
    +})
    +
    + + +
    + + +
    +
    +
    + + + + + + + +
    +
    + + + + + + + + + + + + + + + + + + diff --git a/docs/guides/advanced/ComponentLifecycle.md b/docs/guides/advanced/ComponentLifecycle.md deleted file mode 100644 index df1df5b..0000000 --- a/docs/guides/advanced/ComponentLifecycle.md +++ /dev/null @@ -1,112 +0,0 @@ -# 组件生命周期 - -在开发应用时,理解路由组件的生命周期是非常重要的。 -后面我们会以获取数据这个最常见的场景为例,介绍一下路由改变时,路由组件生命周期的变化情况。 - -路由组件的生命周期和 React 组件相比并没有什么不同。 -所以让我们先忽略路由部分,只考虑在不同 URL 下,这些组件是如何被渲染的。 - -路由配置如下: - -```js - - - - - -``` - -### 路由切换时,组件生命周期的变化情况 - -#### 1. 当用户打开应用的 '/' 页面 - -| 组件 | 生命周期 | -|-----------|------------------------| -| App | `componentDidMount` | -| Home | `componentDidMount` | -| Invoice | N/A | -| Account | N/A | - -#### 2. 当用户从 '/' 跳转到 '/invoice/123' - -| 组件 | 生命周期 | -|-----------|------------------------| -| App | `componentWillReceiveProps`, `componentDidUpdate` | -| Home | `componentWillUnmount` | -| Invoice | `componentDidMount` | -| Account | N/A | - -- `App` 从 router 中接收到新的 props(例如 `children`、`params`、`location` 等数据), -所以 `App` 触发了 `componentWillReceiveProps` 和 `componentDidUpdate` 两个生命周期方法 -- `Home` 不再被渲染,所以它将被移除 -- `Invoice` 首次被挂载 - -#### 3. 当用户从 `/invoice/123` 跳转到 `/invoice/789` - -| 组件 | 生命周期| -|-----------|------------------------| -| App | componentWillReceiveProps, componentDidUpdate | -| Home | N/A | -| Invoice | componentWillReceiveProps, componentDidUpdate | -| Account | N/A | - -所有的组件之前都已经被挂载, -所以只是从 router 更新了 props. - -#### 4. 当从 `/invoice/789` 跳转到 `/accounts/123` - -| 组件 | 生命周期| -|-----------|------------------------| -| App | componentWillReceiveProps, componentDidUpdate | -| Home | N/A | -| Invoice | componentWillUnmount | -| Account | componentDidMount | - -### 获取数据 - -虽然还有其他通过 router 获取数据的方法, -但是最简单的方法是通过组件生命周期 Hook 来实现。 -前面我们已经理解了当路由改变时组件生命周期的变化, -我们可以在 `Invoice` 组件里实现一个简单的数据获取功能。 - -```js -let Invoice = React.createClass({ - - getInitialState () { - return { - invoice: null - } - }, - - componentDidMount () { - // 上面的步骤2,在此初始化数据 - this.fetchInvoice() - }, - - componentDidUpdate (prevProps) { - // 上面步骤3,通过参数更新数据 - let oldId = prevProps.params.invoiceId - let newId = this.props.params.invoiceId - if (newId !== oldId) - this.fetchInvoice() - }, - - componentWillUnmount () { - // 上面步骤四,在组件移除前忽略正在进行中的请求 - this.ignoreLastFetch = true - }, - - fetchInvoice () { - let url = `/api/invoices/${this.props.params.invoiceId}` - this.request = fetch(url, (err, data) => { - if (!this.ignoreLastFetch) - this.setState({ invoice: data.invoice }) - }) - }, - - render () { - return - } - -}) -``` diff --git a/docs/guides/advanced/ConfirmingNavigation.html b/docs/guides/advanced/ConfirmingNavigation.html new file mode 100644 index 0000000..9f15427 --- /dev/null +++ b/docs/guides/advanced/ConfirmingNavigation.html @@ -0,0 +1,528 @@ + + + + + + + + 跳转前确认 | React Router 中文文档 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + +
    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + +

    + + React Router 中文文档 +

    +
    + +
    +
    + + +
    + +   开始纠错

    跳转前确认

    +

    React Router 提供一个 routerWillLeave 生命周期钩子,这使得 React 组件可以拦截正在发生的跳转,或在离开 route 前提示用户。routerWillLeave 返回值有以下两种:

    +
      +
    1. return false 取消此次跳转
    2. +
    3. return 返回提示信息,在离开 route 前提示用户进行确认。
    4. +
    +

    你可以在 route 组件 中引入 Lifecycle mixin 来安装这个钩子。

    +
    import { Lifecycle } from 'react-router'
    +
    +const Home = React.createClass({
    +
    +  // 假设 Home 是一个 route 组件,它可能会使用
    +  // Lifecycle mixin 去获得一个 routerWillLeave 方法。
    +  mixins: [ Lifecycle ],
    +
    +  routerWillLeave(nextLocation) {
    +    if (!this.state.isSaved)
    +      return 'Your work is not saved! Are you sure you want to leave?'
    +  },
    +
    +  // ...
    +
    +})
    +
    +

    如果你在组件中使用了 ES6 类,你可以借助 react-mixin 包将 Lifecycle mixin 添加到组件中,不过我们推荐使用 React.createClass 来创建组件,初始化路由的生命周期钩子函数。

    +

    如果你想在一个深层嵌套的组件中使用 routerWillLeave 钩子,只需在 route 组件 中引入 RouteContext mixin,这样就会把 route 放到 context 中。

    +
    import { Lifecycle, RouteContext } from 'react-router'
    +
    +const Home = React.createClass({
    +
    +  // route 会被放到 Home 和它子组件及孙子组件的 context 中,
    +  // 这样在层级树中 Home 及其所有子组件都可以拿到 route。
    +  mixins: [ RouteContext ],
    +
    +  render() {
    +    return <NestedForm />
    +  }
    +
    +})
    +
    +const NestedForm = React.createClass({
    +
    +  // 后代组件使用 Lifecycle mixin 获得
    +  // 一个 routerWillLeave 的方法。
    +  mixins: [ Lifecycle ],
    +
    +  routerWillLeave(nextLocation) {
    +    if (!this.state.isSaved)
    +      return 'Your work is not saved! Are you sure you want to leave?'
    +  },
    +
    +  // ...
    +
    +})
    +
    + + +
    + + +
    +
    +
    + + + + + + + +
    +
    + + + + + + + + + + + + + + + + + + diff --git a/docs/guides/advanced/ConfirmingNavigation.md b/docs/guides/advanced/ConfirmingNavigation.md deleted file mode 100644 index dd85c49..0000000 --- a/docs/guides/advanced/ConfirmingNavigation.md +++ /dev/null @@ -1,61 +0,0 @@ -# 跳转前确认 - -React Router 提供一个 [`routerWillLeave` 生命周期钩子](/docs/Glossary.md#routehook),这使得 React [组件](/docs/Glossary.md#component)可以拦截正在发生的跳转,或在离开 [route](/docs/Glossary.md#route) 前提示用户。[`routerWillLeave`](/docs/API.md#routerwillleavenextlocation) 返回值有以下两种: - -1. `return false` 取消此次跳转 -2. `return` 返回提示信息,在离开 route 前提示用户进行确认。 - -你可以在 [route 组件](/docs/Glossary.md#routecomponent) 中引入 `Lifecycle` mixin 来安装这个钩子。 - -```js -import { Lifecycle } from 'react-router' - -const Home = React.createClass({ - - // 假设 Home 是一个 route 组件,它可能会使用 - // Lifecycle mixin 去获得一个 routerWillLeave 方法。 - mixins: [ Lifecycle ], - - routerWillLeave(nextLocation) { - if (!this.state.isSaved) - return 'Your work is not saved! Are you sure you want to leave?' - }, - - // ... - -}) -``` -如果你在组件中使用了 ES6 类,你可以借助 [react-mixin](https://github.com/brigand/react-mixin) 包将 `Lifecycle` mixin 添加到组件中,不过我们推荐使用 `React.createClass` 来创建组件,初始化路由的生命周期钩子函数。 - -如果你想在一个深层嵌套的组件中使用 [`routerWillLeave`](/docs/API.md#routerwillleavenextlocation) 钩子,只需在 [route 组件](/docs/Glossary.md#routecomponent) 中引入 [`RouteContext`](/docs/API.md#routecontext-mixin) mixin,这样就会把 `route` 放到 context 中。 - -```js -import { Lifecycle, RouteContext } from 'react-router' - -const Home = React.createClass({ - - // route 会被放到 Home 和它子组件及孙子组件的 context 中, - // 这样在层级树中 Home 及其所有子组件都可以拿到 route。 - mixins: [ RouteContext ], - - render() { - return - } - -}) - -const NestedForm = React.createClass({ - - // 后代组件使用 Lifecycle mixin 获得 - // 一个 routerWillLeave 的方法。 - mixins: [ Lifecycle ], - - routerWillLeave(nextLocation) { - if (!this.state.isSaved) - return 'Your work is not saved! Are you sure you want to leave?' - }, - - // ... - -}) -``` diff --git a/docs/guides/advanced/DynamicRouting.html b/docs/guides/advanced/DynamicRouting.html new file mode 100644 index 0000000..dfe2501 --- /dev/null +++ b/docs/guides/advanced/DynamicRouting.html @@ -0,0 +1,509 @@ + + + + + + + + 动态路由 | React Router 中文文档 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + +
    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + +

    + + React Router 中文文档 +

    +
    + +
    +
    + + +
    + +   开始纠错

    动态路由

    +

    React Router 适用于小型网站,比如 React.js Training,也可以支持 FacebookTwitter 这类大型网站。

    +

    对于大型应用来说,一个首当其冲的问题就是所需加载的 JavaScript 的大小。程序应当只加载当前渲染页所需的 JavaScript。有些开发者将这种方式称之为“代码分拆” —— 将所有的代码分拆成多个小包,在用户浏览过程中按需加载。

    +

    对于底层细节的修改不应该需要它上面每一层级都进行修改。举个例子,为一个照片浏览页添加一个路径不应该影响到首页加载的 JavaScript 的大小。也不能因为多个团队共用一个大型的路由配置文件而造成合并时的冲突。

    +

    路由是个非常适于做代码分拆的地方:它的责任就是配置好每个 view。

    +

    React Router 里的路径匹配以及组件加载都是异步完成的,不仅允许你延迟加载组件,并且可以延迟加载路由配置。在首次加载包中你只需要有一个路径定义,路由会自动解析剩下的路径。

    +

    Route 可以定义 getChildRoutesgetIndexRoutegetComponents 这几个函数。它们都是异步执行,并且只有在需要时才被调用。我们将这种方式称之为 “逐渐匹配”。 React Router 会逐渐的匹配 URL 并只加载该 URL 对应页面所需的路径配置和组件。

    +

    如果配合 webpack 这类的代码分拆工具使用的话,一个原本繁琐的构架就会变得更简洁明了。

    +
    const CourseRoute = {
    +  path: 'course/:courseId',
    +
    +  getChildRoutes(location, callback) {
    +    require.ensure([], function (require) {
    +      callback(null, [
    +        require('./routes/Announcements'),
    +        require('./routes/Assignments'),
    +        require('./routes/Grades'),
    +      ])
    +    })
    +  },
    +
    +  getIndexRoute(location, callback) {
    +    require.ensure([], function (require) {
    +      callback(null, require('./components/Index'))
    +    })
    +  },
    +
    +  getComponents(location, callback) {
    +    require.ensure([], function (require) {
    +      callback(null, require('./components/Course'))
    +    })
    +  }
    +}
    +
    +

    现在,可以看一下 webpack 都做了哪些。开玩笑,我现在不想让你伤心。

    +

    运行 huge apps 实例,打开浏览器的审查元素选项。你会发现在路由发生改变时,资源按需加载。

    + + +
    + + +
    +
    +
    + + + + + + + +
    +
    + + + + + + + + + + + + + + + + + + diff --git a/docs/guides/advanced/DynamicRouting.md b/docs/guides/advanced/DynamicRouting.md deleted file mode 100644 index c5c2312..0000000 --- a/docs/guides/advanced/DynamicRouting.md +++ /dev/null @@ -1,48 +0,0 @@ -# 动态路由 - -React Router 适用于小型网站,比如 [React.js Training](https://reactjs-training.com),也可以支持 [Facebook](https://www.facebook.com/) 和 [Twitter](https://twitter.com/) 这类大型网站。 - -对于大型应用来说,一个首当其冲的问题就是所需加载的 JavaScript 的大小。程序应当只加载当前渲染页所需的 JavaScript。有些开发者将这种方式称之为“代码分拆” —— 将所有的代码分拆成多个小包,在用户浏览过程中按需加载。 - -对于底层细节的修改不应该需要它上面每一层级都进行修改。举个例子,为一个照片浏览页添加一个路径不应该影响到首页加载的 JavaScript 的大小。也不能因为多个团队共用一个大型的路由配置文件而造成合并时的冲突。 - -路由是个非常适于做代码分拆的地方:它的责任就是配置好每个 view。 - -React Router 里的[路径匹配](/docs/guides/basics/RouteMatching.md)以及组件加载都是异步完成的,不仅允许你延迟加载组件,**并且可以延迟加载路由配置**。在首次加载包中你只需要有一个路径定义,路由会自动解析剩下的路径。 - -Route 可以定义 [`getChildRoutes`](/docs/API.md#getchildrouteslocation-callback),[`getIndexRoute`](/docs/API.md#getindexroutelocation-callback) 和 [`getComponents`](/docs/API.md#getcomponentslocation-callback) 这几个函数。它们都是异步执行,并且只有在需要时才被调用。我们将这种方式称之为 “逐渐匹配”。 React Router 会逐渐的匹配 URL 并只加载该 URL 对应页面所需的路径配置和组件。 - -如果配合 [webpack](http://webpack.github.io/) 这类的代码分拆工具使用的话,一个原本繁琐的构架就会变得更简洁明了。 - -```js -const CourseRoute = { - path: 'course/:courseId', - - getChildRoutes(location, callback) { - require.ensure([], function (require) { - callback(null, [ - require('./routes/Announcements'), - require('./routes/Assignments'), - require('./routes/Grades'), - ]) - }) - }, - - getIndexRoute(location, callback) { - require.ensure([], function (require) { - callback(null, { - component: require('./components/Index') - }) - }) - }, - - getComponents(location, callback) { - require.ensure([], function (require) { - callback(null, require('./components/Course')) - }) - } -} -``` -现在,可以看一下 webpack 都做了哪些。开玩笑,我现在不想让你伤心。 - -运行 [huge apps](https://github.com/rackt/react-router/tree/master/examples/huge-apps) 实例,打开浏览器的审查元素选项。你会发现在路由发生改变时,资源按需加载。 diff --git a/docs/guides/advanced/NavigatingOutsideOfComponents.html b/docs/guides/advanced/NavigatingOutsideOfComponents.html new file mode 100644 index 0000000..79597e8 --- /dev/null +++ b/docs/guides/advanced/NavigatingOutsideOfComponents.html @@ -0,0 +1,484 @@ + + + + + + + + 组件外部跳转 | React Router 中文文档 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + +
    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + +

    + + React Router 中文文档 +

    +
    + +
    +
    + + +
    + +   开始纠错

    在组件外部使用导航

    +

    虽然在组件内部可以使用 this.context.router 来实现导航,但许多应用想要在组件外部使用导航。使用Router组件上被赋予的history可以在组件外部实现导航。

    +
    // your main file that renders a Router
    +import { Router, browserHistory } from 'react-router'
    +import routes from './app/routes'
    +render(<Router history={browserHistory} routes={routes}/>, el)
    +
    +
    // somewhere like a redux/flux action file:
    +import { browserHistory } from 'react-router'
    +browserHistory.push('/some/path')
    +
    + + +
    + + +
    +
    +
    + + + + + + + +
    +
    + + + + + + + + + + + + + + + + + + diff --git a/docs/guides/advanced/NavigatingOutsideOfComponents.md b/docs/guides/advanced/NavigatingOutsideOfComponents.md deleted file mode 100644 index 2596ce0..0000000 --- a/docs/guides/advanced/NavigatingOutsideOfComponents.md +++ /dev/null @@ -1,16 +0,0 @@ -# 在组件外部使用导航 - -虽然在组件内部可以使用 `this.context.router` 来实现导航,但许多应用想要在组件外部使用导航。使用Router组件上被赋予的history可以在组件外部实现导航。 - -```js -// your main file that renders a Router -import { Router, browserHistory } from 'react-router' -import routes from './app/routes' -render(, el) -``` - -```js -// somewhere like a redux/flux action file: -import { browserHistory } from 'react-router' -browserHistory.push('/some/path') -``` \ No newline at end of file diff --git a/docs/guides/advanced/README.md b/docs/guides/advanced/README.md deleted file mode 100644 index 3d2159c..0000000 --- a/docs/guides/advanced/README.md +++ /dev/null @@ -1,7 +0,0 @@ -# 高级用法 - -* [动态路由](DynamicRouting.md) -* [跳转前确认](ConfirmingNavigation.md) -* [服务端渲染](ServerRendering.md) -* [模块生命周期](ComponentLifecycle.md) -* [组件外部跳转](NavigatingOutsideOfComponents.md) diff --git a/docs/guides/advanced/ServerRendering.html b/docs/guides/advanced/ServerRendering.html new file mode 100644 index 0000000..0ced9f5 --- /dev/null +++ b/docs/guides/advanced/ServerRendering.html @@ -0,0 +1,507 @@ + + + + + + + + 服务端渲染 | React Router 中文文档 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + +
    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + +

    + + React Router 中文文档 +

    +
    + +
    +
    + + +
    + +   开始纠错

    服务端渲染

    +

    服务端渲染与客户端渲染有些许不同,因为你需要:

    +
      +
    • 发生错误时发送一个 500 的响应
    • +
    • 需要重定向时发送一个 30x 的响应
    • +
    • 在渲染之前获得数据 (用 router 帮你完成这点)
    • +
    +

    为了迎合这一需求,你要在 <Router> API 下一层使用:

    +
      +
    • 使用 match 在渲染之前根据 location 匹配 route
    • +
    • 使用 RoutingContext 同步渲染 route 组件
    • +
    +

    它看起来像一个虚拟的 JavaScript 服务器:

    +
    import { renderToString } from 'react-dom/server'
    +import { match, RoutingContext } from 'react-router'
    +import routes from './routes'
    +
    +serve((req, res) => {
    +  // 注意!这里的 req.url 应该是从初始请求中获得的
    +  // 完整的 URL 路径,包括查询字符串。
    +  match({ routes, location: req.url }, (error, redirectLocation, renderProps) => {
    +    if (error) {
    +      res.send(500, error.message)
    +    } else if (redirectLocation) {
    +      res.redirect(302, redirectLocation.pathname + redirectLocation.search)
    +    } else if (renderProps) {
    +      res.send(200, renderToString(<RoutingContext {...renderProps} />))
    +    } else {
    +      res.send(404, 'Not found')
    +    }
    +  })
    +})
    +
    +

    至于加载数据,你可以用 renderProps 去构建任何你想要的形式——例如在 route 组件中添加一个静态的 load 方法,或如在 route 中添加数据加载的方法——由你决定。

    + + +
    + + +
    +
    +
    + + + + + + + +
    +
    + + + + + + + + + + + + + + + + + + diff --git a/docs/guides/advanced/ServerRendering.md b/docs/guides/advanced/ServerRendering.md deleted file mode 100644 index fc020ec..0000000 --- a/docs/guides/advanced/ServerRendering.md +++ /dev/null @@ -1,37 +0,0 @@ -# 服务端渲染 - -服务端渲染与客户端渲染有些许不同,因为你需要: - -- 发生错误时发送一个 `500` 的响应 -- 需要重定向时发送一个 `30x` 的响应 -- 在渲染之前获得数据 (用 router 帮你完成这点) - -为了迎合这一需求,你要在 [``](/docs/API.md#Router) API 下一层使用: - -- 使用 [`match`](/docs/API.md#matchlocation-cb) 在渲染之前根据 location 匹配 route -- 使用 `RoutingContext` 同步渲染 route 组件 - -它看起来像一个虚拟的 JavaScript 服务器: - -```js -import { renderToString } from 'react-dom/server' -import { match, RoutingContext } from 'react-router' -import routes from './routes' - -serve((req, res) => { - // 注意!这里的 req.url 必须是原始请求的全路径URL,包括参数字段 - match({ routes, location: req.url }, (error, redirectLocation, renderProps) => { - if (error) { - res.send(500, error.message) - } else if (redirectLocation) { - res.redirect(302, redirectLocation.pathname + redirectLocation.search) - } else if (renderProps) { - res.send(200, renderToString()) - } else { - res.send(404, 'Not found') - } - }) -}) -``` - -至于加载数据,你可以用 `renderProps` 去构建任何你想要的形式——例如在 route 组件中添加一个静态的 `load` 方法,或如在 route 中添加数据加载的方法——由你决定。 diff --git a/docs/guides/advanced/index.html b/docs/guides/advanced/index.html new file mode 100644 index 0000000..71b22d9 --- /dev/null +++ b/docs/guides/advanced/index.html @@ -0,0 +1,481 @@ + + + + + + + + 高级用法 | React Router 中文文档 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + +
    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + +

    + + React Router 中文文档 +

    +
    + + +
    + + + + + + + +
    +
    + + + + + + + + + + + + + + + + + + diff --git a/docs/guides/basics/Histories.html b/docs/guides/basics/Histories.html new file mode 100644 index 0000000..a6cd686 --- /dev/null +++ b/docs/guides/basics/Histories.html @@ -0,0 +1,567 @@ + + + + + + + + History | React Router 中文文档 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + +
    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + +

    + + React Router 中文文档 +

    +
    + +
    +
    + + +
    + +   开始纠错

    Histories

    +

    React Router 是建立在 history 之上的。 +简而言之,一个 history 知道如何去监听浏览器地址栏的变化, +并解析这个 URL 转化为 location 对象, +然后 router 使用它匹配到路由,最后正确地渲染对应的组件。

    +

    常用的 history 有三种形式, +但是你也可以使用 React Router 实现自定义的 history。

    + +

    你可以从 React Router 中引入它们:

    +
    // JavaScript 模块导入(译者注:ES6 形式)
    +import { browserHistory } from 'react-router'
    +
    +

    然后将它们传递给<Router>:

    +
    render(
    +  <Router history={browserHistory} routes={routes} />,
    +  document.getElementById('app')
    +)
    +
    +

    browserHistory

    +

    Browser history 是使用 React Router 的应用推荐的 history。它使用浏览器中的 History API 用于处理 URL,创建一个像example.com/some/path这样真实的 URL 。

    +

    服务器配置

    +

    服务器需要做好处理 URL 的准备。处理应用启动最初的 / 这样的请求应该没问题,但当用户来回跳转并在 /accounts/123 刷新时,服务器就会收到来自 /accounts/123 的请求,这时你需要处理这个 URL 并在响应中包含 JavaScript 应用代码。

    +

    一个 express 的应用可能看起来像这样的:

    +
    const express = require('express')
    +const path = require('path')
    +const port = process.env.PORT || 8080
    +const app = express()
    +
    +// 通常用于加载静态资源
    +app.use(express.static(__dirname + '/public'))
    +
    +// 在你应用 JavaScript 文件中包含了一个 script 标签
    +// 的 index.html 中处理任何一个 route
    +app.get('*', function (request, response){
    +  response.sendFile(path.resolve(__dirname, 'public', 'index.html'))
    +})
    +
    +app.listen(port)
    +console.log("server started on port " + port)
    +
    +

    如果你的服务器是 nginx,请使用 try_files 指令

    +
    server {
    +  ...
    +  location / {
    +    try_files $uri /index.html
    +  }
    +}
    +

    当在服务器上找不到其他文件时,这可以让 nginx 服务器提供静态文件服务并指向index.html 文件。

    +

    对于Apache服务器也有类似的方式,创建一个.htaccess文件在你的文件根目录下:

    +
    RewriteBase /
    +RewriteRule ^index\.html$ - [L]
    +RewriteCond %{REQUEST_FILENAME} !-f
    +RewriteCond %{REQUEST_FILENAME} !-d
    +RewriteRule . /index.html [L]
    +

    IE8, IE9 支持情况

    +

    如果我们能使用浏览器自带的 window.history API,那么我们的特性就可以被浏览器所检测到。如果不能,那么任何调用跳转的应用就会导致 全页面刷新,它允许在构建应用和更新浏览器时会有一个更好的用户体验,但仍然支持的是旧版的。

    +

    你可能会想为什么我们不后退到 hash history,问题是这些 URL 是不确定的。如果一个访客在 hash history 和 browser history 上共享一个 URL,然后他们也共享同一个后退功能,最后我们会以产生笛卡尔积数量级的、无限多的 URL 而崩溃。

    +

    hashHistory

    +

    Hash history 使用 URL 中的 hash(#)部分去创建形如 example.com/#/some/path 的路由。

    +

    我应该使用 createHashHistory吗?

    +

    Hash history 不需要服务器任何配置就可以运行,如果你刚刚入门,那就使用它吧。但是我们不推荐在实际线上环境中用到它,因为每一个 web 应用都应该渴望使用 browserHistory

    +

    像这样 ?_k=ckuvup 没用的在 URL 中是什么?

    +

    当一个 history 通过应用程序的 pushreplace 跳转时,它可以在新的 location 中存储 “location state” 而不显示在 URL 中,这就像是在一个 HTML 中 post 的表单数据。

    +

    在 DOM API 中,这些 hash history 通过 window.location.hash = newHash 很简单地被用于跳转,且不用存储它们的location state。但我们想全部的 history 都能够使用location state,因此我们要为每一个 location 创建一个唯一的 key,并把它们的状态存储在 session storage 中。当访客点击“后退”和“前进”时,我们就会有一个机制去恢复这些 location state。

    +

    createMemoryHistory

    +

    Memory history 不会在地址栏被操作或读取。这就解释了我们是如何实现服务器渲染的。同时它也非常适合测试和其他的渲染环境(像 React Native )。

    +

    和另外两种history的一点不同是你必须创建它,这种方式便于测试。

    +
    const history = createMemoryHistory(location)
    +
    +

    实现示例

    +
    import React from 'react'
    +import { render } from 'react-dom'
    +import { browserHistory, Router, Route, IndexRoute } from 'react-router'
    +
    +import App from '../components/App'
    +import Home from '../components/Home'
    +import About from '../components/About'
    +import Features from '../components/Features'
    +
    +render(
    +  <Router history={browserHistory}>
    +    <Route path='/' component={App}>
    +      <IndexRoute component={Home} />
    +      <Route path='about' component={About} />
    +      <Route path='features' component={Features} />
    +    </Route>
    +  </Router>,
    +  document.getElementById('app')
    +)
    +
    + + +
    + + +
    +
    +
    + + + + + + + +
    +
    + + + + + + + + + + + + + + + + + + diff --git a/docs/guides/basics/Histories.md b/docs/guides/basics/Histories.md deleted file mode 100644 index a84d87c..0000000 --- a/docs/guides/basics/Histories.md +++ /dev/null @@ -1,126 +0,0 @@ -# Histories - -React Router 是建立在 [history](https://github.com/rackt/history) 之上的。 -简而言之,一个 history 知道如何去监听浏览器地址栏的变化, -并解析这个 URL 转化为 `location` 对象, -然后 router 使用它匹配到路由,最后正确地渲染对应的组件。 - -常用的 history 有三种形式, -但是你也可以使用 React Router 实现自定义的 history。 - -- [`browserHistory`](#browserHistory) -- [`hashHistory`](#hashHistory) -- [`createMemoryHistory`](#creatememoryhistory) - -你可以从 React Router 中引入它们: - -```js -// JavaScript 模块导入(译者注:ES6 形式) -import { browserHistory } from 'react-router' -``` - -然后将它们传递给``: - -```js -render( - , - document.getElementById('app') -) -``` - -### `browserHistory` -Browser history 是使用 React Router 的应用推荐的 history。它使用浏览器中的 [History](https://developer.mozilla.org/en-US/docs/Web/API/History) API 用于处理 URL,创建一个像`example.com/some/path`这样真实的 URL 。 - -#### 服务器配置 -服务器需要做好处理 URL 的准备。处理应用启动最初的 `/` 这样的请求应该没问题,但当用户来回跳转并在 `/accounts/123` 刷新时,服务器就会收到来自 `/accounts/123` 的请求,这时你需要处理这个 URL 并在响应中包含 JavaScript 应用代码。 - -一个 express 的应用可能看起来像这样的: - -```js -const express = require('express') -const path = require('path') -const port = process.env.PORT || 8080 -const app = express() - -// 通常用于加载静态资源 -app.use(express.static(__dirname + '/public')) - -// 在你应用 JavaScript 文件中包含了一个 script 标签 -// 的 index.html 中处理任何一个 route -app.get('*', function (request, response){ - response.sendFile(path.resolve(__dirname, 'public', 'index.html')) -}) - -app.listen(port) -console.log("server started on port " + port) -``` - -如果你的服务器是 nginx,请使用 [`try_files` 指令](http://nginx.org/en/docs/http/ngx_http_core_module.html#try_files): - -``` -server { - ... - location / { - try_files $uri /index.html - } -} -``` - -当在服务器上找不到其他文件时,这可以让 nginx 服务器提供静态文件服务并指向`index.html` 文件。 - -对于Apache服务器也有类似的方式,创建一个`.htaccess`文件在你的文件根目录下: - -``` -RewriteBase / -RewriteRule ^index\.html$ - [L] -RewriteCond %{REQUEST_FILENAME} !-f -RewriteCond %{REQUEST_FILENAME} !-d -RewriteRule . /index.html [L] -``` - -#### IE8, IE9 支持情况 -如果我们能使用浏览器自带的 `window.history` API,那么我们的特性就可以被浏览器所检测到。如果不能,那么任何调用跳转的应用就会导致 **全页面刷新**,它允许在构建应用和更新浏览器时会有一个更好的用户体验,但仍然支持的是旧版的。 - -你可能会想为什么我们不后退到 hash history,问题是这些 URL 是不确定的。如果一个访客在 hash history 和 browser history 上共享一个 URL,然后他们也共享同一个后退功能,最后我们会以产生笛卡尔积数量级的、无限多的 URL 而崩溃。 - -### `hashHistory` -Hash history 使用 URL 中的 hash(`#`)部分去创建形如 `example.com/#/some/path` 的路由。 - -#### 我应该使用 `createHashHistory`吗? -Hash history 不需要服务器任何配置就可以运行,如果你刚刚入门,那就使用它吧。但是我们不推荐在实际线上环境中用到它,因为每一个 web 应用都应该渴望使用 `browserHistory`。 - -#### 像这样 `?_k=ckuvup` 没用的在 URL 中是什么? -当一个 history 通过应用程序的 `push` 或 `replace` 跳转时,它可以在新的 location 中存储 “location state” 而不显示在 URL 中,这就像是在一个 HTML 中 post 的表单数据。 - -在 DOM API 中,这些 hash history 通过 `window.location.hash = newHash` 很简单地被用于跳转,且不用存储它们的location state。但我们想全部的 history 都能够使用location state,因此我们要为每一个 location 创建一个唯一的 key,并把它们的状态存储在 session storage 中。当访客点击“后退”和“前进”时,我们就会有一个机制去恢复这些 location state。 - -### `createMemoryHistory` -Memory history 不会在地址栏被操作或读取。这就解释了我们是如何实现服务器渲染的。同时它也非常适合测试和其他的渲染环境(像 React Native )。 - -和另外两种history的一点不同是你必须创建它,这种方式便于测试。 -```js -const history = createMemoryHistory(location) -``` - -## 实现示例 -```js -import React from 'react' -import { render } from 'react-dom' -import { browserHistory, Router, Route, IndexRoute } from 'react-router' - -import App from '../components/App' -import Home from '../components/Home' -import About from '../components/About' -import Features from '../components/Features' - -render( - - - - - - - , - document.getElementById('app') -) -``` diff --git a/docs/guides/basics/IndexRoutes.html b/docs/guides/basics/IndexRoutes.html new file mode 100644 index 0000000..729aa8f --- /dev/null +++ b/docs/guides/basics/IndexRoutes.html @@ -0,0 +1,505 @@ + + + + + + + + 默认路由(IndexRoute)与 IndexLink | React Router 中文文档 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + +
    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + +

    + + React Router 中文文档 +

    +
    + +
    +
    + + +
    + +   开始纠错

    默认路由(IndexRoute)与 IndexLink

    +

    默认路由(IndexRoute)

    +

    在解释 默认路由(IndexRoute) 的用例之前,我们来设想一下,一个不使用默认路由的路由配置是什么样的:

    +
    <Router>
    +  <Route path="/" component={App}>
    +    <Route path="accounts" component={Accounts}/>
    +    <Route path="statements" component={Statements}/>
    +  </Route>
    +</Router>
    +
    +

    当用户访问 / 时, App 组件被渲染,但组件内的子元素却没有, +App 内部的 this.props.children 为 undefined 。 +你可以简单地使用 `{this.props.children ||

    +

    }` 来渲染一些默认的 UI 组件。

    +

    但现在,Home 无法参与到比如 onEnter hook 这些路由机制中来。 +在 Home 的位置,渲染的是 AccountsStatements。 +由此,router 允许你使用 IndexRoute ,以使 Home 作为最高层级的路由出现.

    +
    <Router>
    +  <Route path="/" component={App}>
    +    <IndexRoute component={Home}/>
    +    <Route path="accounts" component={Accounts}/>
    +    <Route path="statements" component={Statements}/>
    +  </Route>
    +</Router>
    +
    +

    现在 App 能够渲染 {this.props.children} 了, +我们也有了一个最高层级的路由,使 Home 可以参与进来。

    + +

    如果你在这个 app 中使用 <Link to="/">Home</Link> , +它会一直处于激活状态,因为所有的 URL 的开头都是 / 。 +这确实是个问题,因为我们仅仅希望在 Home 被渲染后,激活并链接到它。

    +

    如果需要在 Home 路由被渲染后才激活的指向 / 的链接,请使用 <IndexLink to="/">Home</IndexLink>

    + + +
    + + +
    +
    +
    + + + + + + + +
    +
    + + + + + + + + + + + + + + + + + + diff --git a/docs/guides/basics/IndexRoutes.md b/docs/guides/basics/IndexRoutes.md deleted file mode 100644 index 647c5b6..0000000 --- a/docs/guides/basics/IndexRoutes.md +++ /dev/null @@ -1,45 +0,0 @@ -# 默认路由(IndexRoute)与 IndexLink - -## 默认路由(IndexRoute) - -在解释 `默认路由(IndexRoute)` 的用例之前,我们来设想一下,一个不使用默认路由的路由配置是什么样的: - -```js - - - - - - -``` - -当用户访问 `/` 时, App 组件被渲染,但组件内的子元素却没有, -`App` 内部的 `this.props.children` 为 undefined 。 -你可以简单地使用 `{this.props.children || -}` 来渲染一些默认的 UI 组件。 - -但现在,`Home` 无法参与到比如 `onEnter` hook 这些路由机制中来。 -在 `Home` 的位置,渲染的是 `Accounts` 和 `Statements`。 -由此,router 允许你使用 `IndexRoute` ,以使 `Home` 作为最高层级的路由出现. - - -```js - - - - - - - -``` - -现在 `App` 能够渲染 `{this.props.children}` 了, -我们也有了一个最高层级的路由,使 `Home` 可以参与进来。 - -## Index Links - -如果你在这个 app 中使用 `Home` , -它会一直处于激活状态,因为所有的 URL 的开头都是 `/` 。 -这确实是个问题,因为我们仅仅希望在 `Home` 被渲染后,激活并链接到它。 - -如果需要在 `Home` 路由被渲染后才激活的指向 `/` 的链接,请使用 `Home` diff --git a/docs/guides/basics/README.md b/docs/guides/basics/README.md deleted file mode 100644 index f0ff88d..0000000 --- a/docs/guides/basics/README.md +++ /dev/null @@ -1,6 +0,0 @@ -# 基础 - -* [路由配置](RouteConfiguration.md) -* [路由匹配原理](RouteMatching.md) -* [History](Histories.md) -* [默认路由(IndexRoute)与 IndexLink](IndexRoutes.md) diff --git a/docs/guides/basics/RouteConfiguration.html b/docs/guides/basics/RouteConfiguration.html new file mode 100644 index 0000000..b150342 --- /dev/null +++ b/docs/guides/basics/RouteConfiguration.html @@ -0,0 +1,705 @@ + + + + + + + + 路由配置 | React Router 中文文档 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + +
    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + +

    + + React Router 中文文档 +

    +
    + +
    +
    + + +
    + +   开始纠错

    路由配置

    +

    路由配置是一组指令,用来告诉 router 如何匹配 URL以及匹配后如何执行代码。我们来通过一个简单的例子解释一下如何编写路由配置。

    +
    import React from 'react'
    +import { Router, Route, Link } from 'react-router'
    +
    +const App = React.createClass({
    +  render() {
    +    return (
    +      <div>
    +        <h1>App</h1>
    +        <ul>
    +          <li><Link to="/about">About</Link></li>
    +          <li><Link to="/inbox">Inbox</Link></li>
    +        </ul>
    +        {this.props.children}
    +      </div>
    +    )
    +  }
    +})
    +
    +const About = React.createClass({
    +  render() {
    +    return <h3>About</h3>
    +  }
    +})
    +
    +const Inbox = React.createClass({
    +  render() {
    +    return (
    +      <div>
    +        <h2>Inbox</h2>
    +        {this.props.children || "Welcome to your Inbox"}
    +      </div>
    +    )
    +  }
    +})
    +
    +const Message = React.createClass({
    +  render() {
    +    return <h3>Message {this.props.params.id}</h3>
    +  }
    +})
    +
    +React.render((
    +  <Router>
    +    <Route path="/" component={App}>
    +      <Route path="about" component={About} />
    +      <Route path="inbox" component={Inbox}>
    +        <Route path="messages/:id" component={Message} />
    +      </Route>
    +    </Route>
    +  </Router>
    +), document.body)
    +
    +

    通过上面的配置,这个应用知道如何渲染下面四个 URL:

    + + + + + + + + + + + + + + + + + + + + + + + + + +
    URL组件
    /App
    /aboutApp -> About
    /inboxApp -> Inbox
    /inbox/messages/:idApp -> Inbox -> Message
    +

    添加首页

    +

    想象一下当 URL 为 / 时,我们想渲染一个在 App 中的组件。不过在此时,Apprender 中的 this.props.children 还是 undefined。这种情况我们可以使用 IndexRoute 来设置一个默认页面。

    +
    import { IndexRoute } from 'react-router'
    +
    +const Dashboard = React.createClass({
    +  render() {
    +    return <div>Welcome to the app!</div>
    +  }
    +})
    +
    +React.render((
    +  <Router>
    +    <Route path="/" component={App}>
    +      {/* 当 url 为/时渲染 Dashboard */}
    +      <IndexRoute component={Dashboard} />
    +      <Route path="about" component={About} />
    +      <Route path="inbox" component={Inbox}>
    +        <Route path="messages/:id" component={Message} />
    +      </Route>
    +    </Route>
    +  </Router>
    +), document.body)
    +
    +

    现在,Apprender 中的 this.props.children 将会是 <Dashboard>这个元素。这个功能类似 Apache 的DirectoryIndex 以及 nginx的 index指令,上述功能都是在当请求的 URL 匹配某个目录时,允许你制定一个类似index.html的入口文件。

    +

    我们的 sitemap 现在看起来如下:

    + + + + + + + + + + + + + + + + + + + + + + + + + +
    URL组件
    /App -> Dashboard
    /aboutApp -> About
    /inboxApp -> Inbox
    /inbox/messages/:idApp -> Inbox -> Message
    +

    让 UI 从 URL 中解耦出来

    +

    如果我们可以将 /inbox/inbox/messages/:id 中去除,并且还能够让 Message 嵌套在 App -> Inbox 中渲染,那会非常赞。绝对路径可以让我们做到这一点。

    +
    React.render((
    +  <Router>
    +    <Route path="/" component={App}>
    +      <IndexRoute component={Dashboard} />
    +      <Route path="about" component={About} />
    +      <Route path="inbox" component={Inbox}>
    +        {/* 使用 /messages/:id 替换 messages/:id */}
    +        <Route path="/messages/:id" component={Message} />
    +      </Route>
    +    </Route>
    +  </Router>
    +), document.body)
    +
    +

    在多层嵌套路由中使用绝对路径的能力让我们对 URL 拥有绝对的掌控。我们无需在 URL 中添加更多的层级,从而可以使用更简洁的 URL。

    +

    我们现在的 URL 对应关系如下:

    + + + + + + + + + + + + + + + + + + + + + + + + + +
    URL组件
    /App -> Dashboard
    /aboutApp -> About
    /inboxApp -> Inbox
    /messages/:idApp -> Inbox -> Message
    +

    提醒:绝对路径可能在动态路由中无法使用。

    +

    兼容旧的 URL

    +

    等一下,我们刚刚改变了一个 URL! 这样不好。 现在任何人访问 /inbox/messages/5 都会看到一个错误页面。:(

    +

    不要担心。我们可以使用 <Redirect> 使这个 URL 重新正常工作。

    +
    import { Redirect } from 'react-router'
    +
    +React.render((
    +  <Router>
    +    <Route path="/" component={App}>
    +      <IndexRoute component={Dashboard} />
    +      <Route path="about" component={About} />
    +      <Route path="inbox" component={Inbox}>
    +        <Route path="/messages/:id" component={Message} />
    +
    +        {/* 跳转 /inbox/messages/:id 到 /messages/:id */}
    +        <Redirect from="messages/:id" to="/messages/:id" />
    +      </Route>
    +    </Route>
    +  </Router>
    +), document.body)
    +
    +

    现在当有人点击 /inbox/messages/5 这个链接,他们会被自动跳转到 /messages/5。 :raised_hands:

    +

    进入和离开的Hook

    +

    Route 可以定义 onEnteronLeave 两个 hook ,这些hook会在页面跳转确认时触发一次。这些 hook 对于一些情况非常的有用,例如权限验证或者在路由跳转前将一些数据持久化保存起来。

    +

    在路由跳转过程中,onLeave hook 会在所有将离开的路由中触发,从最下层的子路由开始直到最外层父路由结束。然后onEnter hook会从最外层的父路由开始直到最下层子路由结束。

    +

    继续我们上面的例子,如果一个用户点击链接,从 /messages/5 跳转到 /about,下面是这些 hook 的执行顺序:

    +
      +
    • /messages/:idonLeave
    • +
    • /inboxonLeave
    • +
    • /aboutonEnter
    • +
    +

    替换的配置方式

    +

    因为 route 一般被嵌套使用,所以使用 JSX 这种天然具有简洁嵌套型语法的结构来描述它们的关系非常方便。然而,如果你不想使用 JSX,也可以直接使用原生 route 数组对象。

    +

    上面我们讨论的路由配置可以被写成下面这个样子:

    +
    const routeConfig = [
    +  { path: '/',
    +    component: App,
    +    indexRoute: { component: Dashboard },
    +    childRoutes: [
    +      { path: 'about', component: About },
    +      { path: 'inbox',
    +        component: Inbox,
    +        childRoutes: [
    +          { path: '/messages/:id', component: Message },
    +          { path: 'messages/:id',
    +            onEnter: function (nextState, replaceState) {
    +              replaceState(null, '/messages/' + nextState.params.id)
    +            }
    +          }
    +        ]
    +      }
    +    ]
    +  }
    +]
    +
    +React.render(<Router routes={routeConfig} />, document.body)
    +
    + + +
    + + +
    +
    +
    + + + + + + + +
    +
    + + + + + + + + + + + + + + + + + + diff --git a/docs/guides/basics/RouteConfiguration.md b/docs/guides/basics/RouteConfiguration.md deleted file mode 100644 index 3b91cd8..0000000 --- a/docs/guides/basics/RouteConfiguration.md +++ /dev/null @@ -1,208 +0,0 @@ -# 路由配置 - -[路由配置](/docs/Glossary.md#routeconfig)是一组指令,用来告诉 router 如何[匹配 URL](RouteMatching.md)以及匹配后如何执行代码。我们来通过[一个简单的例子](/docs/Introduction.md#adding-more-ui)解释一下如何编写路由配置。 - -```js -import React from 'react' -import { render } from 'react-dom' -import { Route, Link } from 'react-router-dom' -import { BrowserRouter as Router } from 'react-router-dom' - -const App = React.createClass({ - render() { - return ( -
    -

    App

    -
      -
    • About
    • -
    • Inbox
    • -
    - {this.props.children} -
    - ) - } -}) - -const About = React.createClass({ - render() { - return

    About

    - } -}) - -const Inbox = React.createClass({ - render() { - return ( -
    -

    Inbox

    - {this.props.children || "Welcome to your Inbox"} -
    - ) - } -}) - -const Message = React.createClass({ - render() { - return

    Message {this.props.params.id}

    - } -}) - -render(( - - - - - - - - -), document.body) -``` - -通过上面的配置,这个应用知道如何渲染下面四个 URL: - -URL | 组件 -------------------------|----------- -`/` | `App` -`/about` | `App -> About` -`/inbox` | `App -> Inbox` -`/inbox/messages/:id` | `App -> Inbox -> Message` - -### 添加首页 - -想象一下当 URL 为 `/` 时,我们想渲染一个在 `App` 中的组件。不过在此时,`App` 的 `render` 中的 `this.props.children` 还是 `undefined`。这种情况我们可以使用 [`IndexRoute`](/docs/API.md#indexroute) 来设置一个默认页面。 - -```js -import { IndexRoute } from 'react-router' - -const Dashboard = React.createClass({ - render() { - return
    Welcome to the app!
    - } -}) - -render(( - - - {/* 当 url 为/时渲染 Dashboard */} - - - - - - - -), document.body) -``` - -现在,`App` 的 `render` 中的 `this.props.children` 将会是 ``这个元素。这个功能类似 Apache 的[`DirectoryIndex`](http://httpd.apache.org/docs/2.4/mod/mod_dir.html#directoryindex) 以及 nginx的 [`index`](http://nginx.org/en/docs/http/ngx_http_index_module.html#index)指令,上述功能都是在当请求的 URL 匹配某个目录时,允许你制定一个类似`index.html`的入口文件。 - -我们的 sitemap 现在看起来如下: - -URL | 组件 -------------------------|----------- -`/` | `App -> Dashboard` -`/about` | `App -> About` -`/inbox` | `App -> Inbox` -`/inbox/messages/:id` | `App -> Inbox -> Message` - -### 让 UI 从 URL 中解耦出来 - -如果我们可以将 `/inbox` 从 `/inbox/messages/:id` 中去除,并且还能够让 `Message` 嵌套在 `App -> Inbox` 中渲染,那会非常赞。相对路径可以让我们做到这一点。 - -```js -render(( - - - - - - {/* 使用 /messages/:id 替换 messages/:id */} - - - - -), document.body) -``` - -在多层嵌套路由中使用相对路径的能力让我们对 URL 拥有绝对的掌控。我们无需在 URL 中添加更多的层级,从而可以使用更简洁的 URL。 - -我们现在的 URL 对应关系如下: - -URL | 组件 -------------------------|----------- -`/` | `App -> Dashboard` -`/about` | `App -> About` -`/inbox` | `App -> Inbox` -`/messages/:id` | `App -> Inbox -> Message` - -**提醒**:绝对路径可能在[动态路由](/docs/guides/advanced/DynamicRouting.md)中无法使用。 - -### 兼容旧的 URL - -等一下,我们刚刚改变了一个 URL! [这样不好](http://www.w3.org/Provider/Style/URI.html)。 现在任何人访问 `/inbox/messages/5` 都会看到一个错误页面。:( - -不要担心。我们可以使用 [``](/docs/API.md#redirect) 使这个 URL 重新正常工作。 - -```js -import { Redirect } from 'react-router' - -render(( - - - - - - - - {/* 跳转 /inbox/messages/:id 到 /messages/:id */} - - - - -), document.body) -``` - -现在当有人点击 `/inbox/messages/5` 这个链接,他们会被自动跳转到 `/messages/5`。 :raised_hands: - -### 进入和离开的Hook - -[Route](/docs/Glossary.md#route) 可以定义 [`onEnter`](/docs/Glossary.md#enterhook) 和 [`onLeave`](/docs/Glossary.md#leavehook) 两个 hook ,这些hook会在页面跳转[确认](/docs/guides/advanced/ConfirmingNavigation.md)时触发一次。这些 hook 对于一些情况非常的有用,例如[权限验证](https://github.com/rackt/react-router/tree/master/examples/auth-flow)或者在路由跳转前将一些数据持久化保存起来。 - -在路由跳转过程中,[`onLeave` hook](/docs/Glossary.md#leavehook) 会在所有将离开的路由中触发,从最下层的子路由开始直到最外层父路由结束。然后[`onEnter` hook](/docs/Glossary.md#enterhook)会从最外层的父路由开始直到最下层子路由结束。 - -继续我们上面的例子,如果一个用户点击链接,从 `/messages/5` 跳转到 `/about`,下面是这些 hook 的执行顺序: - - - `/messages/:id` 的 `onLeave` - - `/inbox` 的 `onLeave` - - `/about` 的 `onEnter` - -### 替换的配置方式 - -因为 [route](/docs/Glossary.md#route) 一般被嵌套使用,所以使用 [JSX](https://facebook.github.io/jsx/) 这种天然具有简洁嵌套型语法的结构来描述它们的关系非常方便。然而,如果你不想使用 JSX,也可以直接使用原生 [route](/docs/Glossary.md#route) 数组对象。 - -上面我们讨论的路由配置可以被写成下面这个样子: - -```js -const routeConfig = [ - { path: '/', - component: App, - indexRoute: { component: Dashboard }, - childRoutes: [ - { path: 'about', component: About }, - { path: 'inbox', - component: Inbox, - childRoutes: [ - { path: '/messages/:id', component: Message }, - { path: 'messages/:id', - onEnter: function (nextState, replaceState) { - replaceState(null, '/messages/' + nextState.params.id) - } - } - ] - } - ] - } -] - -render(, document.body) -``` diff --git a/docs/guides/basics/RouteMatching.html b/docs/guides/basics/RouteMatching.html new file mode 100644 index 0000000..35a4b6a --- /dev/null +++ b/docs/guides/basics/RouteMatching.html @@ -0,0 +1,499 @@ + + + + + + + + 路由匹配原理 | React Router 中文文档 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + +
    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + +

    + + React Router 中文文档 +

    +
    + +
    +
    + + +
    + +   开始纠错

    路由匹配原理

    +

    路由拥有三个属性来决定是否“匹配“一个 URL:

    +
      +
    1. 嵌套关系
    2. +
    3. 它的 路径语法
    4. +
    5. 它的 优先级
    6. +
    +

    嵌套关系

    +

    React Router 使用路由嵌套的概念来让你定义 view 的嵌套集合,当一个给定的 URL 被调用时,整个集合中(命中的部分)都会被渲染。嵌套路由被描述成一种树形结构。React Router 会深度优先遍历整个路由配置来寻找一个与给定的 URL 相匹配的路由。

    +

    路径语法

    +

    路由路径是匹配一个(或一部分)URL 的 一个字符串模式。大部分的路由路径都可以直接按照字面量理解,除了以下几个特殊的符号:

    +
      +
    • :paramName – 匹配一段位于 /?# 之后的 URL。 命中的部分将被作为一个参数
    • +
    • () – 在它内部的内容被认为是可选的
    • +
    • * – 匹配任意字符(非贪婪的)直到命中下一个字符或者整个 URL 的末尾,并创建一个 splat 参数
    • +
    +
    <Route path="/hello/:name">         // 匹配 /hello/michael 和 /hello/ryan
    +<Route path="/hello(/:name)">       // 匹配 /hello, /hello/michael 和 /hello/ryan
    +<Route path="/files/*.*">           // 匹配 /files/hello.jpg 和 /files/path/to/hello.jpg
    +
    +

    如果一个路由使用了相对路径,那么完整的路径将由它的所有祖先节点的路径和自身指定的相对路径拼接而成。使用绝对路径可以使路由匹配行为忽略嵌套关系。

    +

    优先级

    +

    最后,路由算法会根据定义的顺序自顶向下匹配路由。因此,当你拥有两个兄弟路由节点配置时,你必须确认前一个路由不会匹配后一个路由中的路径。例如,千万不要这么做:

    +
    <Route path="/comments" ... />
    +<Redirect from="/comments" ... />
    +
    + + +
    + + +
    +
    +
    + + + + + + + +
    +
    + + + + + + + + + + + + + + + + + + diff --git a/docs/guides/basics/RouteMatching.md b/docs/guides/basics/RouteMatching.md deleted file mode 100644 index 31027ff..0000000 --- a/docs/guides/basics/RouteMatching.md +++ /dev/null @@ -1,36 +0,0 @@ -# 路由匹配原理 - -[路由](/docs/Glossary.md#route)拥有三个属性来决定是否“匹配“一个 URL: - -1. [嵌套关系](#nesting) 和 -2. 它的 [`路径语法`](#path-syntax) -3. 它的 [优先级](#precedence) - -### 嵌套关系 -React Router 使用路由嵌套的概念来让你定义 view 的嵌套集合,当一个给定的 URL 被调用时,整个集合中(命中的部分)都会被渲染。嵌套路由被描述成一种树形结构。React Router 会深度优先遍历整个[路由配置](/docs/Glossary.md#routeconfig)来寻找一个与给定的 URL 相匹配的路由。 - -### 路径语法 -路由路径是匹配一个(或一部分)URL 的 [一个字符串模式](/docs/Glossary.md#routepattern)。大部分的路由路径都可以直接按照字面量理解,除了以下几个特殊的符号: - - - `:paramName` – 匹配一段位于 `/`、`?` 或 `#` 之后的 URL。 命中的部分将被作为一个[参数](/docs/Glossary.md#params) - - `()` – 在它内部的内容被认为是可选的 - - `?` -内容是可选的 - - `*` – 匹配任意字符(非贪婪的)直到命中下一个字符或者整个 URL 的末尾,并创建一个 `splat` [参数](/docs/Glossary.md#params) - - `**` - 匹配任意字符(贪婪的)直到命中下一个字符 `/`、`?` 或 `#`,并创建一个 `splat` [参数](/docs/Glossary.md#params) - -```js - // 匹配 /hello/michael 和 /hello/ryan - // 匹配 /hello, /hello/michael 和 /hello/ryan - // 4.0以后 应该这样写 匹配/hello, /hello/michael 和 /hello/ryan - // 匹配 /files/hello.jpg 和 /files/path/to/hello.jpg -``` - -如果一个路由使用了相对`路径`,那么完整的路径将由它的所有祖先节点的`路径`和自身指定的相对`路径`拼接而成。[使用绝对`路径`](RouteConfiguration.md#decoupling-the-ui-from-the-url)可以使路由匹配行为忽略嵌套关系。 - -### 优先级 -最后,路由算法会根据定义的顺序自顶向下匹配路由。因此,当你拥有两个兄弟路由节点配置时,你必须确认前一个路由不会匹配后一个路由中的`路径`。例如,千万**不要**这么做: - -```js - - -``` diff --git a/docs/guides/basics/index.html b/docs/guides/basics/index.html new file mode 100644 index 0000000..967e8d3 --- /dev/null +++ b/docs/guides/basics/index.html @@ -0,0 +1,480 @@ + + + + + + + + 基础 | React Router 中文文档 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + +
    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + +

    + + React Router 中文文档 +

    +
    + + +
    + + + + + + + +
    +
    + + + + + + + + + + + + + + + + + + diff --git a/gitbook/app.js b/gitbook/app.js new file mode 100644 index 0000000..b1a910b --- /dev/null +++ b/gitbook/app.js @@ -0,0 +1 @@ +var requirejs,require,define;(function(global){function isFunction(e){return ostring.call(e)==="[object Function]"}function isArray(e){return ostring.call(e)==="[object Array]"}function each(e,t){if(e){var n;for(n=0;n-1;n-=1)if(e[n]&&t(e[n],n,e))break}}function hasProp(e,t){return hasOwn.call(e,t)}function getOwn(e,t){return hasProp(e,t)&&e[t]}function eachProp(e,t){var n;for(n in e)if(hasProp(e,n)&&t(e[n],n))break}function mixin(e,t,n,r){return t&&eachProp(t,function(t,i){if(n||!hasProp(e,i))r&&typeof t=="object"&&t&&!isArray(t)&&!isFunction(t)&&!(t instanceof RegExp)?(e[i]||(e[i]={}),mixin(e[i],t,n,r)):e[i]=t}),e}function bind(e,t){return function(){return t.apply(e,arguments)}}function scripts(){return document.getElementsByTagName("script")}function defaultOnError(e){throw e}function getGlobal(e){if(!e)return e;var t=global;return each(e.split("."),function(e){t=t[e]}),t}function makeError(e,t,n,r){var i=new Error(t+"\nhttp://requirejs.org/docs/errors.html#"+e);return i.requireType=e,i.requireModules=r,n&&(i.originalError=n),i}function newContext(e){function m(e){var t,n,r=e.length;for(t=0;t0&&(e.splice(t-1,2),t-=2)}}}function g(e,t,n){var r,i,s,u,a,f,l,c,h,p,d,v=t&&t.split("/"),g=v,y=o.map,b=y&&y["*"];e&&e.charAt(0)==="."&&(t?(g=v.slice(0,v.length-1),e=e.split("/"),l=e.length-1,o.nodeIdCompat&&jsSuffixRegExp.test(e[l])&&(e[l]=e[l].replace(jsSuffixRegExp,"")),e=g.concat(e),m(e),e=e.join("/")):e.indexOf("./")===0&&(e=e.substring(2)));if(n&&y&&(v||b)){s=e.split("/");e:for(u=s.length;u>0;u-=1){f=s.slice(0,u).join("/");if(v)for(a=v.length;a>0;a-=1){i=getOwn(y,v.slice(0,a).join("/"));if(i){i=getOwn(i,f);if(i){c=i,h=u;break e}}}!p&&b&&getOwn(b,f)&&(p=getOwn(b,f),d=u)}!c&&p&&(c=p,h=d),c&&(s.splice(0,h,c),e=s.join("/"))}return r=getOwn(o.pkgs,e),r?r:e}function y(e){isBrowser&&each(scripts(),function(t){if(t.getAttribute("data-requiremodule")===e&&t.getAttribute("data-requirecontext")===r.contextName)return t.parentNode.removeChild(t),!0})}function b(e){var t=getOwn(o.paths,e);if(t&&isArray(t)&&t.length>1)return t.shift(),r.require.undef(e),r.require([e]),!0}function w(e){var t,n=e?e.indexOf("!"):-1;return n>-1&&(t=e.substring(0,n),e=e.substring(n+1,e.length)),[t,e]}function E(e,t,n,i){var s,o,u,a,f=null,l=t?t.name:null,h=e,p=!0,m="";return e||(p=!1,e="_@r"+(d+=1)),a=w(e),f=a[0],e=a[1],f&&(f=g(f,l,i),o=getOwn(c,f)),e&&(f?o&&o.normalize?m=o.normalize(e,function(e){return g(e,l,i)}):m=g(e,l,i):(m=g(e,l,i),a=w(m),f=a[0],m=a[1],n=!0,s=r.nameToUrl(m))),u=f&&!o&&!n?"_unnormalized"+(v+=1):"",{prefix:f,name:m,parentMap:t,unnormalized:!!u,url:s,originalName:h,isDefine:p,id:(f?f+"!"+m:m)+u}}function S(e){var t=e.id,n=getOwn(u,t);return n||(n=u[t]=new r.Module(e)),n}function x(e,t,n){var r=e.id,i=getOwn(u,r);hasProp(c,r)&&(!i||i.defineEmitComplete)?t==="defined"&&n(c[r]):(i=S(e),i.error&&t==="error"?n(i.error):i.on(t,n))}function T(e,t){var n=e.requireModules,r=!1;t?t(e):(each(n,function(t){var n=getOwn(u,t);n&&(n.error=e,n.events.error&&(r=!0,n.emit("error",e)))}),r||req.onError(e))}function N(){globalDefQueue.length&&(apsp.apply(l,[l.length,0].concat(globalDefQueue)),globalDefQueue=[])}function C(e){delete u[e],delete a[e]}function k(e,t,n){var r=e.map.id;e.error?e.emit("error",e.error):(t[r]=!0,each(e.depMaps,function(r,i){var s=r.id,o=getOwn(u,s);o&&!e.depMatched[i]&&!n[s]&&(getOwn(t,s)?(e.defineDep(i,c[s]),e.check()):k(o,t,n))}),n[r]=!0)}function L(){var e,n,i=o.waitSeconds*1e3,u=i&&r.startTime+i<(new Date).getTime(),f=[],l=[],c=!1,h=!0;if(t)return;t=!0,eachProp(a,function(e){var t=e.map,r=t.id;if(!e.enabled)return;t.isDefine||l.push(e);if(!e.error)if(!e.inited&&u)b(r)?(n=!0,c=!0):(f.push(r),y(r));else if(!e.inited&&e.fetched&&t.isDefine){c=!0;if(!t.prefix)return h=!1}});if(u&&f.length)return e=makeError("timeout","Load timeout for modules: "+f,null,f),e.contextName=r.contextName,T(e);h&&each(l,function(e){k(e,{},{})}),(!u||n)&&c&&(isBrowser||isWebWorker)&&!s&&(s=setTimeout(function(){s=0,L()},50)),t=!1}function A(e){hasProp(c,e[0])||S(E(e[0],null,!0)).init(e[1],e[2])}function O(e,t,n,r){e.detachEvent&&!isOpera?r&&e.detachEvent(r,t):e.removeEventListener(n,t,!1)}function M(e){var t=e.currentTarget||e.srcElement;return O(t,r.onScriptLoad,"load","onreadystatechange"),O(t,r.onScriptError,"error"),{node:t,id:t&&t.getAttribute("data-requiremodule")}}function _(){var e;N();while(l.length){e=l.shift();if(e[0]===null)return T(makeError("mismatch","Mismatched anonymous define() module: "+e[e.length-1]));A(e)}}var t,n,r,i,s,o={waitSeconds:7,baseUrl:"./",paths:{},bundles:{},pkgs:{},shim:{},config:{}},u={},a={},f={},l=[],c={},h={},p={},d=1,v=1;return i={require:function(e){return e.require?e.require:e.require=r.makeRequire(e.map)},exports:function(e){e.usingExports=!0;if(e.map.isDefine)return e.exports?c[e.map.id]=e.exports:e.exports=c[e.map.id]={}},module:function(e){return e.module?e.module:e.module={id:e.map.id,uri:e.map.url,config:function(){return getOwn(o.config,e.map.id)||{}},exports:e.exports||(e.exports={})}}},n=function(e){this.events=getOwn(f,e.id)||{},this.map=e,this.shim=getOwn(o.shim,e.id),this.depExports=[],this.depMaps=[],this.depMatched=[],this.pluginMaps={},this.depCount=0},n.prototype={init:function(e,t,n,r){r=r||{};if(this.inited)return;this.factory=t,n?this.on("error",n):this.events.error&&(n=bind(this,function(e){this.emit("error",e)})),this.depMaps=e&&e.slice(0),this.errback=n,this.inited=!0,this.ignore=r.ignore,r.enabled||this.enabled?this.enable():this.check()},defineDep:function(e,t){this.depMatched[e]||(this.depMatched[e]=!0,this.depCount-=1,this.depExports[e]=t)},fetch:function(){if(this.fetched)return;this.fetched=!0,r.startTime=(new Date).getTime();var e=this.map;if(!this.shim)return e.prefix?this.callPlugin():this.load();r.makeRequire(this.map,{enableBuildCallback:!0})(this.shim.deps||[],bind(this,function(){return e.prefix?this.callPlugin():this.load()}))},load:function(){var e=this.map.url;h[e]||(h[e]=!0,r.load(this.map.id,e))},check:function(){if(!this.enabled||this.enabling)return;var e,t,n=this.map.id,i=this.depExports,s=this.exports,o=this.factory;if(!this.inited)this.fetch();else if(this.error)this.emit("error",this.error);else if(!this.defining){this.defining=!0;if(this.depCount<1&&!this.defined){if(isFunction(o)){if(this.events.error&&this.map.isDefine||req.onError!==defaultOnError)try{s=r.execCb(n,o,i,s)}catch(u){e=u}else s=r.execCb(n,o,i,s);this.map.isDefine&&s===undefined&&(t=this.module,t?s=t.exports:this.usingExports&&(s=this.exports));if(e)return e.requireMap=this.map,e.requireModules=this.map.isDefine?[this.map.id]:null,e.requireType=this.map.isDefine?"define":"require",T(this.error=e)}else s=o;this.exports=s,this.map.isDefine&&!this.ignore&&(c[n]=s,req.onResourceLoad&&req.onResourceLoad(r,this.map,this.depMaps)),C(n),this.defined=!0}this.defining=!1,this.defined&&!this.defineEmitted&&(this.defineEmitted=!0,this.emit("defined",this.exports),this.defineEmitComplete=!0)}},callPlugin:function(){var e=this.map,t=e.id,n=E(e.prefix);this.depMaps.push(n),x(n,"defined",bind(this,function(n){var i,s,a,f=getOwn(p,this.map.id),l=this.map.name,c=this.map.parentMap?this.map.parentMap.name:null,h=r.makeRequire(e.parentMap,{enableBuildCallback:!0});if(this.map.unnormalized){n.normalize&&(l=n.normalize(l,function(e){return g(e,c,!0)})||""),s=E(e.prefix+"!"+l,this.map.parentMap),x(s,"defined",bind(this,function(e){this.init([],function(){return e},null,{enabled:!0,ignore:!0})})),a=getOwn(u,s.id),a&&(this.depMaps.push(s),this.events.error&&a.on("error",bind(this,function(e){this.emit("error",e)})),a.enable());return}if(f){this.map.url=r.nameToUrl(f),this.load();return}i=bind(this,function(e){this.init([],function(){return e},null,{enabled:!0})}),i.error=bind(this,function(e){this.inited=!0,this.error=e,e.requireModules=[t],eachProp(u,function(e){e.map.id.indexOf(t+"_unnormalized")===0&&C(e.map.id)}),T(e)}),i.fromText=bind(this,function(n,s){var u=e.name,a=E(u),f=useInteractive;s&&(n=s),f&&(useInteractive=!1),S(a),hasProp(o.config,t)&&(o.config[u]=o.config[t]);try{req.exec(n)}catch(l){return T(makeError("fromtexteval","fromText eval for "+t+" failed: "+l,l,[t]))}f&&(useInteractive=!0),this.depMaps.push(a),r.completeLoad(u),h([u],i)}),n.load(e.name,h,i,o)})),r.enable(n,this),this.pluginMaps[n.id]=n},enable:function(){a[this.map.id]=this,this.enabled=!0,this.enabling=!0,each(this.depMaps,bind(this,function(e,t){var n,s,o;if(typeof e=="string"){e=E(e,this.map.isDefine?this.map:this.map.parentMap,!1,!this.skipMap),this.depMaps[t]=e,o=getOwn(i,e.id);if(o){this.depExports[t]=o(this);return}this.depCount+=1,x(e,"defined",bind(this,function(e){this.defineDep(t,e),this.check()})),this.errback&&x(e,"error",bind(this,this.errback))}n=e.id,s=u[n],!hasProp(i,n)&&s&&!s.enabled&&r.enable(e,this)})),eachProp(this.pluginMaps,bind(this,function(e){var t=getOwn(u,e.id);t&&!t.enabled&&r.enable(e,this)})),this.enabling=!1,this.check()},on:function(e,t){var n=this.events[e];n||(n=this.events[e]=[]),n.push(t)},emit:function(e,t){each(this.events[e],function(e){e(t)}),e==="error"&&delete this.events[e]}},r={config:o,contextName:e,registry:u,defined:c,urlFetched:h,defQueue:l,Module:n,makeModuleMap:E,nextTick:req.nextTick,onError:T,configure:function(e){e.baseUrl&&e.baseUrl.charAt(e.baseUrl.length-1)!=="/"&&(e.baseUrl+="/");var t=o.shim,n={paths:!0,bundles:!0,config:!0,map:!0};eachProp(e,function(e,t){n[t]?(o[t]||(o[t]={}),mixin(o[t],e,!0,!0)):o[t]=e}),e.bundles&&eachProp(e.bundles,function(e,t){each(e,function(e){e!==t&&(p[e]=t)})}),e.shim&&(eachProp(e.shim,function(e,n){isArray(e)&&(e={deps:e}),(e.exports||e.init)&&!e.exportsFn&&(e.exportsFn=r.makeShimExports(e)),t[n]=e}),o.shim=t),e.packages&&each(e.packages,function(e){var t,n;e=typeof e=="string"?{name:e}:e,n=e.name,t=e.location,t&&(o.paths[n]=e.location),o.pkgs[n]=e.name+"/"+(e.main||"main").replace(currDirRegExp,"").replace(jsSuffixRegExp,"")}),eachProp(u,function(e,t){!e.inited&&!e.map.unnormalized&&(e.map=E(t))}),(e.deps||e.callback)&&r.require(e.deps||[],e.callback)},makeShimExports:function(e){function t(){var t;return e.init&&(t=e.init.apply(global,arguments)),t||e.exports&&getGlobal(e.exports)}return t},makeRequire:function(t,n){function s(o,a,f){var l,h,p;return n.enableBuildCallback&&a&&isFunction(a)&&(a.__requireJsBuild=!0),typeof o=="string"?isFunction(a)?T(makeError("requireargs","Invalid require call"),f):t&&hasProp(i,o)?i[o](u[t.id]):req.get?req.get(r,o,t,s):(h=E(o,t,!1,!0),l=h.id,hasProp(c,l)?c[l]:T(makeError("notloaded",'Module name "'+l+'" has not been loaded yet for context: '+e+(t?"":". Use require([])")))):(_(),r.nextTick(function(){_(),p=S(E(null,t)),p.skipMap=n.skipMap,p.init(o,a,f,{enabled:!0}),L()}),s)}return n=n||{},mixin(s,{isBrowser:isBrowser,toUrl:function(e){var n,i=e.lastIndexOf("."),s=e.split("/")[0],o=s==="."||s==="..";return i!==-1&&(!o||i>1)&&(n=e.substring(i,e.length),e=e.substring(0,i)),r.nameToUrl(g(e,t&&t.id,!0),n,!0)},defined:function(e){return hasProp(c,E(e,t,!1,!0).id)},specified:function(e){return e=E(e,t,!1,!0).id,hasProp(c,e)||hasProp(u,e)}}),t||(s.undef=function(e){N();var n=E(e,t,!0),r=getOwn(u,e);y(e),delete c[e],delete h[n.url],delete f[e],eachReverse(l,function(t,n){t[0]===e&&l.splice(n,1)}),r&&(r.events.defined&&(f[e]=r.events),C(e))}),s},enable:function(e){var t=getOwn(u,e.id);t&&S(e).enable()},completeLoad:function(e){var t,n,r,i=getOwn(o.shim,e)||{},s=i.exports;N();while(l.length){n=l.shift();if(n[0]===null){n[0]=e;if(t)break;t=!0}else n[0]===e&&(t=!0);A(n)}r=getOwn(u,e);if(!t&&!hasProp(c,e)&&r&&!r.inited){if(o.enforceDefine&&(!s||!getGlobal(s))){if(b(e))return;return T(makeError("nodefine","No define call for "+e,null,[e]))}A([e,i.deps||[],i.exportsFn])}L()},nameToUrl:function(e,t,n){var i,s,u,a,f,l,c,h=getOwn(o.pkgs,e);h&&(e=h),c=getOwn(p,e);if(c)return r.nameToUrl(c,t,n);if(req.jsExtRegExp.test(e))f=e+(t||"");else{i=o.paths,s=e.split("/");for(u=s.length;u>0;u-=1){a=s.slice(0,u).join("/"),l=getOwn(i,a);if(l){isArray(l)&&(l=l[0]),s.splice(0,u,l);break}}f=s.join("/"),f+=t||(/^data\:|\?/.test(f)||n?"":".js"),f=(f.charAt(0)==="/"||f.match(/^[\w\+\.\-]+:/)?"":o.baseUrl)+f}return o.urlArgs?f+((f.indexOf("?")===-1?"?":"&")+o.urlArgs):f},load:function(e,t){req.load(r,e,t)},execCb:function(e,t,n,r){return t.apply(r,n)},onScriptLoad:function(e){if(e.type==="load"||readyRegExp.test((e.currentTarget||e.srcElement).readyState)){interactiveScript=null;var t=M(e);r.completeLoad(t.id)}},onScriptError:function(e){var t=M(e);if(!b(t.id))return T(makeError("scripterror","Script error for: "+t.id,e,[t.id]))}},r.require=r.makeRequire(),r}function getInteractiveScript(){return interactiveScript&&interactiveScript.readyState==="interactive"?interactiveScript:(eachReverse(scripts(),function(e){if(e.readyState==="interactive")return interactiveScript=e}),interactiveScript)}var req,s,head,baseElement,dataMain,src,interactiveScript,currentlyAddingScript,mainScript,subPath,version="2.1.11",commentRegExp=/(\/\*([\s\S]*?)\*\/|([^:]|^)\/\/(.*)$)/mg,cjsRequireRegExp=/[^.]\s*require\s*\(\s*["']([^'"\s]+)["']\s*\)/g,jsSuffixRegExp=/\.js$/,currDirRegExp=/^\.\//,op=Object.prototype,ostring=op.toString,hasOwn=op.hasOwnProperty,ap=Array.prototype,apsp=ap.splice,isBrowser=typeof window!="undefined"&&typeof navigator!="undefined"&&!!window.document,isWebWorker=!isBrowser&&typeof importScripts!="undefined",readyRegExp=isBrowser&&navigator.platform==="PLAYSTATION 3"?/^complete$/:/^(complete|loaded)$/,defContextName="_",isOpera=typeof opera!="undefined"&&opera.toString()==="[object Opera]",contexts={},cfg={},globalDefQueue=[],useInteractive=!1;if(typeof define!="undefined")return;if(typeof requirejs!="undefined"){if(isFunction(requirejs))return;cfg=requirejs,requirejs=undefined}typeof require!="undefined"&&!isFunction(require)&&(cfg=require,require=undefined),req=requirejs=function(e,t,n,r){var i,s,o=defContextName;return!isArray(e)&&typeof e!="string"&&(s=e,isArray(t)?(e=t,t=n,n=r):e=[]),s&&s.context&&(o=s.context),i=getOwn(contexts,o),i||(i=contexts[o]=req.s.newContext(o)),s&&i.configure(s),i.require(e,t,n)},req.config=function(e){return req(e)},req.nextTick=typeof setTimeout!="undefined"?function(e){setTimeout(e,4)}:function(e){e()},require||(require=req),req.version=version,req.jsExtRegExp=/^\/|:|\?|\.js$/,req.isBrowser=isBrowser,s=req.s={contexts:contexts,newContext:newContext},req({}),each(["toUrl","undef","defined","specified"],function(e){req[e]=function(){var t=contexts[defContextName];return t.require[e].apply(t,arguments)}}),isBrowser&&(head=s.head=document.getElementsByTagName("head")[0],baseElement=document.getElementsByTagName("base")[0],baseElement&&(head=s.head=baseElement.parentNode)),req.onError=defaultOnError,req.createNode=function(e,t,n){var r=e.xhtml?document.createElementNS("http://www.w3.org/1999/xhtml","html:script"):document.createElement("script");return r.type=e.scriptType||"text/javascript",r.charset="utf-8",r.async=!0,r},req.load=function(e,t,n){var r=e&&e.config||{},i;if(isBrowser)return i=req.createNode(r,t,n),i.setAttribute("data-requirecontext",e.contextName),i.setAttribute("data-requiremodule",t),i.attachEvent&&!(i.attachEvent.toString&&i.attachEvent.toString().indexOf("[native code")<0)&&!isOpera?(useInteractive=!0,i.attachEvent("onreadystatechange",e.onScriptLoad)):(i.addEventListener("load",e.onScriptLoad,!1),i.addEventListener("error",e.onScriptError,!1)),i.src=n,currentlyAddingScript=i,baseElement?head.insertBefore(i,baseElement):head.appendChild(i),currentlyAddingScript=null,i;if(isWebWorker)try{importScripts(n),e.completeLoad(t)}catch(s){e.onError(makeError("importscripts","importScripts failed for "+t+" at "+n,s,[t]))}},isBrowser&&!cfg.skipDataMain&&eachReverse(scripts(),function(e){head||(head=e.parentNode),dataMain=e.getAttribute("data-main");if(dataMain)return mainScript=dataMain,cfg.baseUrl||(src=mainScript.split("/"),mainScript=src.pop(),subPath=src.length?src.join("/")+"/":"./",cfg.baseUrl=subPath),mainScript=mainScript.replace(jsSuffixRegExp,""),req.jsExtRegExp.test(mainScript)&&(mainScript=dataMain),cfg.deps=cfg.deps?cfg.deps.concat(mainScript):[mainScript],!0}),define=function(e,t,n){var r,i;typeof e!="string"&&(n=t,t=e,e=null),isArray(t)||(n=t,t=null),!t&&isFunction(n)&&(t=[],n.length&&(n.toString().replace(commentRegExp,"").replace(cjsRequireRegExp,function(e,n){t.push(n)}),t=(n.length===1?["require"]:["require","exports","module"]).concat(t))),useInteractive&&(r=currentlyAddingScript||getInteractiveScript(),r&&(e||(e=r.getAttribute("data-requiremodule")),i=contexts[r.getAttribute("data-requirecontext")])),(i?i.defQueue:globalDefQueue).push([e,t,n])},define.amd={jQuery:!0},req.exec=function(text){return eval(text)},req(cfg)})(this),define("requireLib",function(){}),function(e,t){typeof module=="object"&&typeof module.exports=="object"?module.exports=e.document?t(e,!0):function(e){if(!e.document)throw new Error("jQuery requires a window with a document");return t(e)}:t(e)}(typeof window!="undefined"?window:this,function(window,noGlobal){function isArraylike(e){var t=e.length,n=jQuery.type(e);return n==="function"||jQuery.isWindow(e)?!1:e.nodeType===1&&t?!0:n==="array"||t===0||typeof t=="number"&&t>0&&t-1 in e}function winnow(e,t,n){if(jQuery.isFunction(t))return jQuery.grep(e,function(e,r){return!!t.call(e,r,e)!==n});if(t.nodeType)return jQuery.grep(e,function(e){return e===t!==n});if(typeof t=="string"){if(risSimple.test(t))return jQuery.filter(t,e,n);t=jQuery.filter(t,e)}return jQuery.grep(e,function(e){return indexOf.call(t,e)>=0!==n})}function sibling(e,t){while((e=e[t])&&e.nodeType!==1);return e}function createOptions(e){var t=optionsCache[e]={};return jQuery.each(e.match(rnotwhite)||[],function(e,n){t[n]=!0}),t}function completed(){document.removeEventListener("DOMContentLoaded",completed,!1),window.removeEventListener("load",completed,!1),jQuery.ready()}function Data(){Object.defineProperty(this.cache={},0,{get:function(){return{}}}),this.expando=jQuery.expando+Math.random()}function dataAttr(e,t,n){var r;if(n===undefined&&e.nodeType===1){r="data-"+t.replace(rmultiDash,"-$1").toLowerCase(),n=e.getAttribute(r);if(typeof n=="string"){try{n=n==="true"?!0:n==="false"?!1:n==="null"?null:+n+""===n?+n:rbrace.test(n)?jQuery.parseJSON(n):n}catch(i){}data_user.set(e,t,n)}else n=undefined}return n}function returnTrue(){return!0}function returnFalse(){return!1}function safeActiveElement(){try{return document.activeElement}catch(e){}}function manipulationTarget(e,t){return jQuery.nodeName(e,"table")&&jQuery.nodeName(t.nodeType!==11?t:t.firstChild,"tr")?e.getElementsByTagName("tbody")[0]||e.appendChild(e.ownerDocument.createElement("tbody")):e}function disableScript(e){return e.type=(e.getAttribute("type")!==null)+"/"+e.type,e}function restoreScript(e){var t=rscriptTypeMasked.exec(e.type);return t?e.type=t[1]:e.removeAttribute("type"),e}function setGlobalEval(e,t){var n=0,r=e.length;for(;n")).appendTo(t.documentElement),t=iframe[0].contentDocument,t.write(),t.close(),n=actualDisplay(e,t),iframe.detach();elemdisplay[e]=n}return n}function curCSS(e,t,n){var r,i,s,o,u=e.style;return n=n||getStyles(e),n&&(o=n.getPropertyValue(t)||n[t]),n&&(o===""&&!jQuery.contains(e.ownerDocument,e)&&(o=jQuery.style(e,t)),rnumnonpx.test(o)&&rmargin.test(t)&&(r=u.width,i=u.minWidth,s=u.maxWidth,u.minWidth=u.maxWidth=u.width=o,o=n.width,u.width=r,u.minWidth=i,u.maxWidth=s)),o!==undefined?o+"":o}function addGetHookIf(e,t){return{get:function(){if(e()){delete this.get;return}return(this.get=t).apply(this,arguments)}}}function vendorPropName(e,t){if(t in e)return t;var n=t[0].toUpperCase()+t.slice(1),r=t,i=cssPrefixes.length;while(i--){t=cssPrefixes[i]+n;if(t in e)return t}return r}function setPositiveNumber(e,t,n){var r=rnumsplit.exec(t);return r?Math.max(0,r[1]-(n||0))+(r[2]||"px"):t}function augmentWidthOrHeight(e,t,n,r,i){var s=n===(r?"border":"content")?4:t==="width"?1:0,o=0;for(;s<4;s+=2)n==="margin"&&(o+=jQuery.css(e,n+cssExpand[s],!0,i)),r?(n==="content"&&(o-=jQuery.css(e,"padding"+cssExpand[s],!0,i)),n!=="margin"&&(o-=jQuery.css(e,"border"+cssExpand[s]+"Width",!0,i))):(o+=jQuery.css(e,"padding"+cssExpand[s],!0,i),n!=="padding"&&(o+=jQuery.css(e,"border"+cssExpand[s]+"Width",!0,i)));return o}function getWidthOrHeight(e,t,n){var r=!0,i=t==="width"?e.offsetWidth:e.offsetHeight,s=getStyles(e),o=jQuery.css(e,"boxSizing",!1,s)==="border-box";if(i<=0||i==null){i=curCSS(e,t,s);if(i<0||i==null)i=e.style[t];if(rnumnonpx.test(i))return i;r=o&&(support.boxSizingReliable()||i===e.style[t]),i=parseFloat(i)||0}return i+augmentWidthOrHeight(e,t,n||(o?"border":"content"),r,s)+"px"}function showHide(e,t){var n,r,i,s=[],o=0,u=e.length;for(;o=0&&n=0},isPlainObject:function(e){return jQuery.type(e)!=="object"||e.nodeType||jQuery.isWindow(e)?!1:e.constructor&&!hasOwn.call(e.constructor.prototype,"isPrototypeOf")?!1:!0},isEmptyObject:function(e){var t;for(t in e)return!1;return!0},type:function(e){return e==null?e+"":typeof e=="object"||typeof e=="function"?class2type[toString.call(e)]||"object":typeof e},globalEval:function(code){var script,indirect=eval;code=jQuery.trim(code),code&&(code.indexOf("use strict")===1?(script=document.createElement("script"),script.text=code,document.head.appendChild(script).parentNode.removeChild(script)):indirect(code))},camelCase:function(e){return e.replace(rmsPrefix,"ms-").replace(rdashAlpha,fcamelCase)},nodeName:function(e,t){return e.nodeName&&e.nodeName.toLowerCase()===t.toLowerCase()},each:function(e,t,n){var r,i=0,s=e.length,o=isArraylike(e);if(n)if(o)for(;ir.cacheLength&&delete t[e.shift()],t[n+" "]=i}var e=[];return t}function ut(e){return e[w]=!0,e}function at(e){var t=p.createElement("div");try{return!!e(t)}catch(n){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function ft(e,t){var n=e.split("|"),i=e.length;while(i--)r.attrHandle[n[i]]=t}function lt(e,t){var n=t&&e,r=n&&e.nodeType===1&&t.nodeType===1&&(~t.sourceIndex||A)-(~e.sourceIndex||A);if(r)return r;if(n)while(n=n.nextSibling)if(n===t)return-1;return e?1:-1}function ct(e){return function(t){var n=t.nodeName.toLowerCase();return n==="input"&&t.type===e}}function ht(e){return function(t){var n=t.nodeName.toLowerCase();return(n==="input"||n==="button")&&t.type===e}}function pt(e){return ut(function(t){return t=+t,ut(function(n,r){var i,s=e([],n.length,t),o=s.length;while(o--)n[i=s[o]]&&(n[i]=!(r[i]=n[i]))})})}function dt(e){return e&&typeof e.getElementsByTagName!==L&&e}function vt(){}function mt(e){var t=0,n=e.length,r="";for(;t1?function(t,n,r){var i=e.length;while(i--)if(!e[i](t,n,r))return!1;return!0}:e[0]}function bt(e,t,n){var r=0,i=t.length;for(;r-1&&(s[f]=!(o[f]=c))}}else g=wt(g===o?g.splice(d,g.length):g),i?i(null,o,g,a):P.apply(o,g)})}function St(e){var t,n,i,s=e.length,o=r.relative[e[0].type],u=o||r.relative[" "],a=o?1:0,l=gt(function(e){return e===t},u,!0),c=gt(function(e){return B.call(t,e)>-1},u,!0),h=[function(e,n,r){return!o&&(r||n!==f)||((t=n).nodeType?l(e,n,r):c(e,n,r))}];for(;a1&&yt(h),a>1&&mt(e.slice(0,a-1).concat({value:e[a-2].type===" "?"*":""})).replace(z,"$1"),n,a0,i=e.length>0,s=function(s,o,u,a,l){var c,h,d,v=0,m="0",g=s&&[],y=[],b=f,w=s||i&&r.find.TAG("*",l),E=S+=b==null?1:Math.random()||.1,x=w.length;l&&(f=o!==p&&o);for(;m!==x&&(c=w[m])!=null;m++){if(i&&c){h=0;while(d=e[h++])if(d(c,o,u)){a.push(c);break}l&&(S=E)}n&&((c=!d&&c)&&v--,s&&g.push(c))}v+=m;if(n&&m!==v){h=0;while(d=t[h++])d(g,y,o,u);if(s){if(v>0)while(m--)!g[m]&&!y[m]&&(y[m]=_.call(a));y=wt(y)}P.apply(a,y),l&&!s&&y.length>0&&v+t.length>1&&st.uniqueSort(a)}return l&&(S=E,f=b),g};return n?ut(s):s}var t,n,r,i,s,o,u,a,f,l,c,h,p,d,v,m,g,y,b,w="sizzle"+ -(new Date),E=e.document,S=0,x=0,T=ot(),N=ot(),C=ot(),k=function(e,t){return e===t&&(c=!0),0},L=typeof undefined,A=1<<31,O={}.hasOwnProperty,M=[],_=M.pop,D=M.push,P=M.push,H=M.slice,B=M.indexOf||function(e){var t=0,n=this.length;for(;t+~]|"+F+")"+F+"*"),V=new RegExp("="+F+"*([^\\]'\"]*?)"+F+"*\\]","g"),$=new RegExp(U),J=new RegExp("^"+q+"$"),K={ID:new RegExp("^#("+I+")"),CLASS:new RegExp("^\\.("+I+")"),TAG:new RegExp("^("+I.replace("w","w*")+")"),ATTR:new RegExp("^"+R),PSEUDO:new RegExp("^"+U),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+F+"*(even|odd|(([+-]|)(\\d*)n|)"+F+"*(?:([+-]|)"+F+"*(\\d+)|))"+F+"*\\)|)","i"),bool:new RegExp("^(?:"+j+")$","i"),needsContext:new RegExp("^"+F+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+F+"*((?:-\\d)?\\d*)"+F+"*\\)|)(?=[^-]|$)","i")},Q=/^(?:input|select|textarea|button)$/i,G=/^h\d$/i,Y=/^[^{]+\{\s*\[native \w/,Z=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,et=/[+~]/,tt=/'|\\/g,nt=new RegExp("\\\\([\\da-f]{1,6}"+F+"?|("+F+")|.)","ig"),rt=function(e,t,n){var r="0x"+t-65536;return r!==r||n?t:r<0?String.fromCharCode(r+65536):String.fromCharCode(r>>10|55296,r&1023|56320)};try{P.apply(M=H.call(E.childNodes),E.childNodes),M[E.childNodes.length].nodeType}catch(it){P={apply:M.length?function(e,t){D.apply(e,H.call(t))}:function(e,t){var n=e.length,r=0;while(e[n++]=t[r++]);e.length=n-1}}}n=st.support={},s=st.isXML=function(e){var t=e&&(e.ownerDocument||e).documentElement;return t?t.nodeName!=="HTML":!1},h=st.setDocument=function(e){var t,i=e?e.ownerDocument||e:E,o=i.defaultView;if(i===p||i.nodeType!==9||!i.documentElement)return p;p=i,d=i.documentElement,v=!s(i),o&&o!==o.top&&(o.addEventListener?o.addEventListener("unload",function(){h()},!1):o.attachEvent&&o.attachEvent("onunload",function(){h()})),n.attributes=at(function(e){return e.className="i",!e.getAttribute("className")}),n.getElementsByTagName=at(function(e){return e.appendChild(i.createComment("")),!e.getElementsByTagName("*").length}),n.getElementsByClassName=Y.test(i.getElementsByClassName)&&at(function(e){return e.innerHTML="
    ",e.firstChild.className="i",e.getElementsByClassName("i").length===2}),n.getById=at(function(e){return d.appendChild(e).id=w,!i.getElementsByName||!i.getElementsByName(w).length}),n.getById?(r.find.ID=function(e,t){if(typeof t.getElementById!==L&&v){var n=t.getElementById(e);return n&&n.parentNode?[n]:[]}},r.filter.ID=function(e){var t=e.replace(nt,rt);return function(e){return e.getAttribute("id")===t}}):(delete r.find.ID,r.filter.ID=function(e){var t=e.replace(nt,rt);return function(e){var n=typeof e.getAttributeNode!==L&&e.getAttributeNode("id");return n&&n.value===t}}),r.find.TAG=n.getElementsByTagName?function(e,t){if(typeof t.getElementsByTagName!==L)return t.getElementsByTagName(e)}:function(e,t){var n,r=[],i=0,s=t.getElementsByTagName(e);if(e==="*"){while(n=s[i++])n.nodeType===1&&r.push(n);return r}return s},r.find.CLASS=n.getElementsByClassName&&function(e,t){if(typeof t.getElementsByClassName!==L&&v)return t.getElementsByClassName(e)},g=[],m=[];if(n.qsa=Y.test(i.querySelectorAll))at(function(e){e.innerHTML="",e.querySelectorAll("[msallowclip^='']").length&&m.push("[*^$]="+F+"*(?:''|\"\")"),e.querySelectorAll("[selected]").length||m.push("\\["+F+"*(?:value|"+j+")"),e.querySelectorAll(":checked").length||m.push(":checked")}),at(function(e){var t=i.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),e.querySelectorAll("[name=d]").length&&m.push("name"+F+"*[*^$|!~]?="),e.querySelectorAll(":enabled").length||m.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),m.push(",.*:")});return(n.matchesSelector=Y.test(y=d.matches||d.webkitMatchesSelector||d.mozMatchesSelector||d.oMatchesSelector||d.msMatchesSelector))&&at(function(e){n.disconnectedMatch=y.call(e,"div"),y.call(e,"[s!='']:x"),g.push("!=",U)}),m=m.length&&new RegExp(m.join("|")),g=g.length&&new RegExp(g.join("|")),t=Y.test(d.compareDocumentPosition),b=t||Y.test(d.contains)?function(e,t){var n=e.nodeType===9?e.documentElement:e,r=t&&t.parentNode;return e===r||!!r&&r.nodeType===1&&!!(n.contains?n.contains(r):e.compareDocumentPosition&&e.compareDocumentPosition(r)&16)}:function(e,t){if(t)while(t=t.parentNode)if(t===e)return!0;return!1},k=t?function(e,t){if(e===t)return c=!0,0;var r=!e.compareDocumentPosition-!t.compareDocumentPosition;return r?r:(r=(e.ownerDocument||e)===(t.ownerDocument||t)?e.compareDocumentPosition(t):1,r&1||!n.sortDetached&&t.compareDocumentPosition(e)===r?e===i||e.ownerDocument===E&&b(E,e)?-1:t===i||t.ownerDocument===E&&b(E,t)?1:l?B.call(l,e)-B.call(l,t):0:r&4?-1:1)}:function(e,t){if(e===t)return c=!0,0;var n,r=0,s=e.parentNode,o=t.parentNode,u=[e],a=[t];if(!s||!o)return e===i?-1:t===i?1:s?-1:o?1:l?B.call(l,e)-B.call(l,t):0;if(s===o)return lt(e,t);n=e;while(n=n.parentNode)u.unshift(n);n=t;while(n=n.parentNode)a.unshift(n);while(u[r]===a[r])r++;return r?lt(u[r],a[r]):u[r]===E?-1:a[r]===E?1:0},i},st.matches=function(e,t){return st(e,null,null,t)},st.matchesSelector=function(e,t){(e.ownerDocument||e)!==p&&h(e),t=t.replace(V,"='$1']");if(n.matchesSelector&&v&&(!g||!g.test(t))&&(!m||!m.test(t)))try{var r=y.call(e,t);if(r||n.disconnectedMatch||e.document&&e.document.nodeType!==11)return r}catch(i){}return st(t,p,null,[e]).length>0},st.contains=function(e,t){return(e.ownerDocument||e)!==p&&h(e),b(e,t)},st.attr=function(e,t){(e.ownerDocument||e)!==p&&h(e);var i=r.attrHandle[t.toLowerCase()],s=i&&O.call(r.attrHandle,t.toLowerCase())?i(e,t,!v):undefined;return s!==undefined?s:n.attributes||!v?e.getAttribute(t):(s=e.getAttributeNode(t))&&s.specified?s.value:null},st.error=function(e){throw new Error("Syntax error, unrecognized expression: "+e)},st.uniqueSort=function(e){var t,r=[],i=0,s=0;c=!n.detectDuplicates,l=!n.sortStable&&e.slice(0),e.sort(k);if(c){while(t=e[s++])t===e[s]&&(i=r.push(s));while(i--)e.splice(r[i],1)}return l=null,e},i=st.getText=function(e){var t,n="",r=0,s=e.nodeType;if(!s)while(t=e[r++])n+=i(t);else if(s===1||s===9||s===11){if(typeof e.textContent=="string")return e.textContent;for(e=e.firstChild;e;e=e.nextSibling)n+=i(e)}else if(s===3||s===4)return e.nodeValue;return n},r=st.selectors={cacheLength:50,createPseudo:ut,match:K,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(nt,rt),e[3]=(e[3]||e[4]||e[5]||"").replace(nt,rt),e[2]==="~="&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),e[1].slice(0,3)==="nth"?(e[3]||st.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*(e[3]==="even"||e[3]==="odd")),e[5]=+(e[7]+e[8]||e[3]==="odd")):e[3]&&st.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return K.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&$.test(n)&&(t=o(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(nt,rt).toLowerCase();return e==="*"?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=T[e+" "];return t||(t=new RegExp("(^|"+F+")"+e+"("+F+"|$)"))&&T(e,function(e){return t.test(typeof e.className=="string"&&e.className||typeof e.getAttribute!==L&&e.getAttribute("class")||"")})},ATTR:function(e,t,n){return function(r){var i=st.attr(r,e);return i==null?t==="!=":t?(i+="",t==="="?i===n:t==="!="?i!==n:t==="^="?n&&i.indexOf(n)===0:t==="*="?n&&i.indexOf(n)>-1:t==="$="?n&&i.slice(-n.length)===n:t==="~="?(" "+i+" ").indexOf(n)>-1:t==="|="?i===n||i.slice(0,n.length+1)===n+"-":!1):!0}},CHILD:function(e,t,n,r,i){var s=e.slice(0,3)!=="nth",o=e.slice(-4)!=="last",u=t==="of-type";return r===1&&i===0?function(e){return!!e.parentNode}:function(t,n,a){var f,l,c,h,p,d,v=s!==o?"nextSibling":"previousSibling",m=t.parentNode,g=u&&t.nodeName.toLowerCase(),y=!a&&!u;if(m){if(s){while(v){c=t;while(c=c[v])if(u?c.nodeName.toLowerCase()===g:c.nodeType===1)return!1;d=v=e==="only"&&!d&&"nextSibling"}return!0}d=[o?m.firstChild:m.lastChild];if(o&&y){l=m[w]||(m[w]={}),f=l[e]||[],p=f[0]===S&&f[1],h=f[0]===S&&f[2],c=p&&m.childNodes[p];while(c=++p&&c&&c[v]||(h=p=0)||d.pop())if(c.nodeType===1&&++h&&c===t){l[e]=[S,p,h];break}}else if(y&&(f=(t[w]||(t[w]={}))[e])&&f[0]===S)h=f[1];else while(c=++p&&c&&c[v]||(h=p=0)||d.pop())if((u?c.nodeName.toLowerCase()===g:c.nodeType===1)&&++h){y&&((c[w]||(c[w]={}))[e]=[S,h]);if(c===t)break}return h-=i,h===r||h%r===0&&h/r>=0}}},PSEUDO:function(e,t){var n,i=r.pseudos[e]||r.setFilters[e.toLowerCase()]||st.error("unsupported pseudo: "+e);return i[w]?i(t):i.length>1?(n=[e,e,"",t],r.setFilters.hasOwnProperty(e.toLowerCase())?ut(function(e,n){var r,s=i(e,t),o=s.length;while(o--)r=B.call(e,s[o]),e[r]=!(n[r]=s[o])}):function(e){return i(e,0,n)}):i}},pseudos:{not:ut(function(e){var t=[],n=[],r=u(e.replace(z,"$1"));return r[w]?ut(function(e,t,n,i){var s,o=r(e,null,i,[]),u=e.length;while(u--)if(s=o[u])e[u]=!(t[u]=s)}):function(e,i,s){return t[0]=e,r(t,null,s,n),!n.pop()}}),has:ut(function(e){return function(t){return st(e,t).length>0}}),contains:ut(function(e){return function(t){return(t.textContent||t.innerText||i(t)).indexOf(e)>-1}}),lang:ut(function(e){return J.test(e||"")||st.error("unsupported lang: "+e),e=e.replace(nt,rt).toLowerCase(),function(t){var n;do if(n=v?t.lang:t.getAttribute("xml:lang")||t.getAttribute("lang"))return n=n.toLowerCase(),n===e||n.indexOf(e+"-")===0;while((t=t.parentNode)&&t.nodeType===1);return!1}}),target:function(t){var n=e.location&&e.location.hash;return n&&n.slice(1)===t.id},root:function(e){return e===d},focus:function(e){return e===p.activeElement&&(!p.hasFocus||p.hasFocus())&&!!(e.type||e.href||~e.tabIndex)},enabled:function(e){return e.disabled===!1},disabled:function(e){return e.disabled===!0},checked:function(e){var t=e.nodeName.toLowerCase();return t==="input"&&!!e.checked||t==="option"&&!!e.selected},selected:function(e){return e.parentNode&&e.parentNode.selectedIndex,e.selected===!0},empty:function(e){for(e=e.firstChild;e;e=e.nextSibling)if(e.nodeType<6)return!1;return!0},parent:function(e){return!r.pseudos.empty(e)},header:function(e){return G.test(e.nodeName)},input:function(e){return Q.test(e.nodeName)},button:function(e){var t=e.nodeName.toLowerCase();return t==="input"&&e.type==="button"||t==="button"},text:function(e){var t;return e.nodeName.toLowerCase()==="input"&&e.type==="text"&&((t=e.getAttribute("type"))==null||t.toLowerCase()==="text")},first:pt(function(){return[0]}),last:pt(function(e,t){return[t-1]}),eq:pt(function(e,t,n){return[n<0?n+t:n]}),even:pt(function(e,t){var n=0;for(;n=0;)e.push(r);return e}),gt:pt(function(e,t,n){var r=n<0?n+t:n;for(;++r2&&(l=f[0]).type==="ID"&&n.getById&&t.nodeType===9&&v&&r.relative[f[1].type]){t=(r.find.ID(l.matches[0].replace(nt,rt),t)||[])[0];if(!t)return i;p&&(t=t.parentNode),e=e.slice(f.shift().value.length)}a=K.needsContext.test(e)?0:f.length;while(a--){l=f[a];if(r.relative[c=l.type])break;if(h=r.find[c])if(s=h(l.matches[0].replace(nt,rt),et.test(f[0].type)&&dt(t.parentNode)||t)){f.splice(a,1),e=s.length&&mt(f);if(!e)return P.apply(i,s),i;break}}}return(p||u(e,d))(s,t,!v,i,et.test(e)&&dt(t.parentNode)||t),i},n.sortStable=w.split("").sort(k).join("")===w,n.detectDuplicates=!!c,h(),n.sortDetached=at(function(e){return e.compareDocumentPosition(p.createElement("div"))&1}),at(function(e){return e.innerHTML="",e.firstChild.getAttribute("href")==="#"})||ft("type|href|height|width",function(e,t,n){if(!n)return e.getAttribute(t,t.toLowerCase()==="type"?1:2)}),(!n.attributes||!at(function(e){return e.innerHTML="",e.firstChild.setAttribute("value",""),e.firstChild.getAttribute("value")===""}))&&ft("value",function(e,t,n){if(!n&&e.nodeName.toLowerCase()==="input")return e.defaultValue}),at(function(e){return e.getAttribute("disabled")==null})||ft(j,function(e,t,n){var r;if(!n)return e[t]===!0?t.toLowerCase():(r=e.getAttributeNode(t))&&r.specified?r.value:null}),st}(window);jQuery.find=Sizzle,jQuery.expr=Sizzle.selectors,jQuery.expr[":"]=jQuery.expr.pseudos,jQuery.unique=Sizzle.uniqueSort,jQuery.text=Sizzle.getText,jQuery.isXMLDoc=Sizzle.isXML,jQuery.contains=Sizzle.contains;var rneedsContext=jQuery.expr.match.needsContext,rsingleTag=/^<(\w+)\s*\/?>(?:<\/\1>|)$/,risSimple=/^.[^:#\[\.,]*$/;jQuery.filter=function(e,t,n){var r=t[0];return n&&(e=":not("+e+")"),t.length===1&&r.nodeType===1?jQuery.find.matchesSelector(r,e)?[r]:[]:jQuery.find.matches(e,jQuery.grep(t,function(e){return e.nodeType===1}))},jQuery.fn.extend({find:function(e){var t,n=this.length,r=[],i=this;if(typeof e!="string")return this.pushStack(jQuery(e).filter(function(){for(t=0;t1?jQuery.unique(r):r),r.selector=this.selector?this.selector+" "+e:e,r},filter:function(e){return this.pushStack(winnow(this,e||[],!1))},not:function(e){return this.pushStack(winnow(this,e||[],!0))},is:function(e){return!!winnow(this,typeof e=="string"&&rneedsContext.test(e)?jQuery(e):e||[],!1).length}});var rootjQuery,rquickExpr=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]*))$/,init=jQuery.fn.init=function(e,t){var n,r;if(!e)return this;if(typeof e=="string"){e[0]==="<"&&e[e.length-1]===">"&&e.length>=3?n=[null,e,null]:n=rquickExpr.exec(e);if(n&&(n[1]||!t)){if(n[1]){t=t instanceof jQuery?t[0]:t,jQuery.merge(this,jQuery.parseHTML(n[1],t&&t.nodeType?t.ownerDocument||t:document,!0));if(rsingleTag.test(n[1])&&jQuery.isPlainObject(t))for(n in t)jQuery.isFunction(this[n])?this[n](t[n]):this.attr(n,t[n]);return this}return r=document.getElementById(n[2]),r&&r.parentNode&&(this.length=1,this[0]=r),this.context=document,this.selector=e,this}return!t||t.jquery?(t||rootjQuery).find(e):this.constructor(t).find(e)}return e.nodeType?(this.context=this[0]=e,this.length=1,this):jQuery.isFunction(e)?typeof rootjQuery.ready!="undefined"?rootjQuery.ready(e):e(jQuery):(e.selector!==undefined&&(this.selector=e.selector,this.context=e.context),jQuery.makeArray(e,this))};init.prototype=jQuery.fn,rootjQuery=jQuery(document);var rparentsprev=/^(?:parents|prev(?:Until|All))/,guaranteedUnique={children:!0,contents:!0,next:!0,prev:!0};jQuery.extend({dir:function(e,t,n){var r=[],i=n!==undefined;while((e=e[t])&&e.nodeType!==9)if(e.nodeType===1){if(i&&jQuery(e).is(n))break;r.push(e)}return r},sibling:function(e,t){var n=[];for(;e;e=e.nextSibling)e.nodeType===1&&e!==t&&n.push(e);return n}}),jQuery.fn.extend({has:function(e){var t=jQuery(e,this),n=t.length;return this.filter(function(){var e=0;for(;e-1:n.nodeType===1&&jQuery.find.matchesSelector(n,e))){s.push(n);break}return this.pushStack(s.length>1?jQuery.unique(s):s)},index:function(e){return e?typeof e=="string"?indexOf.call(jQuery(e),this[0]):indexOf.call(this,e.jquery?e[0]:e):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(e,t){return this.pushStack(jQuery.unique(jQuery.merge(this.get(),jQuery(e,t))))},addBack:function(e){return this.add(e==null?this.prevObject:this.prevObject.filter(e))}}),jQuery.each({parent:function(e){var t=e.parentNode;return t&&t.nodeType!==11?t:null},parents:function(e){return jQuery.dir(e,"parentNode")},parentsUntil:function(e,t,n){return jQuery.dir(e,"parentNode",n)},next:function(e){return sibling(e,"nextSibling")},prev:function(e){return sibling(e,"previousSibling")},nextAll:function(e){return jQuery.dir(e,"nextSibling")},prevAll:function(e){return jQuery.dir(e,"previousSibling")},nextUntil:function(e,t,n){return jQuery.dir(e,"nextSibling",n)},prevUntil:function(e,t,n){return jQuery.dir(e,"previousSibling",n)},siblings:function(e){return jQuery.sibling((e.parentNode||{}).firstChild,e)},children:function(e){return jQuery.sibling(e.firstChild)},contents:function(e){return e.contentDocument||jQuery.merge([],e.childNodes)}},function(e,t){jQuery.fn[e]=function(n,r){var i=jQuery.map(this,t,n);return e.slice(-5)!=="Until"&&(r=n),r&&typeof r=="string"&&(i=jQuery.filter(r,i)),this.length>1&&(guaranteedUnique[e]||jQuery.unique(i),rparentsprev.test(e)&&i.reverse()),this.pushStack(i)}});var rnotwhite=/\S+/g,optionsCache={};jQuery.Callbacks=function(e){e=typeof e=="string"?optionsCache[e]||createOptions(e):jQuery.extend({},e);var t,n,r,i,s,o,u=[],a=!e.once&&[],f=function(c){t=e.memory&&c,n=!0,o=i||0,i=0,s=u.length,r=!0;for(;u&&o-1)u.splice(n,1),r&&(n<=s&&s--,n<=o&&o--)}),this},has:function(e){return e?jQuery.inArray(e,u)>-1:!!u&&!!u.length},empty:function(){return u=[],s=0,this},disable:function(){return u=a=t=undefined,this},disabled:function(){return!u},lock:function(){return a=undefined,t||l.disable(),this},locked:function(){return!a},fireWith:function(e,t){return u&&(!n||a)&&(t=t||[],t=[e,t.slice?t.slice():t],r?a.push(t):f(t)),this},fire:function(){return l.fireWith(this,arguments),this},fired:function(){return!!n}};return l},jQuery.extend({Deferred:function(e){var t=[["resolve","done",jQuery.Callbacks("once memory"),"resolved"],["reject","fail",jQuery.Callbacks("once memory"),"rejected"],["notify","progress",jQuery.Callbacks("memory")]],n="pending",r={state:function(){return n},always:function(){return i.done(arguments).fail(arguments),this},then:function(){var e=arguments;return jQuery.Deferred(function(n){jQuery.each(t,function(t,s){var o=jQuery.isFunction(e[t])&&e[t];i[s[1]](function(){var e=o&&o.apply(this,arguments);e&&jQuery.isFunction(e.promise)?e.promise().done(n.resolve).fail(n.reject).progress(n.notify):n[s[0]+"With"](this===r?n.promise():this,o?[e]:arguments)})}),e=null}).promise()},promise:function(e){return e!=null?jQuery.extend(e,r):r}},i={};return r.pipe=r.then,jQuery.each(t,function(e,s){var o=s[2],u=s[3];r[s[1]]=o.add,u&&o.add(function(){n=u},t[e^1][2].disable,t[2][2].lock),i[s[0]]=function(){return i[s[0]+"With"](this===i?r:this,arguments),this},i[s[0]+"With"]=o.fireWith}),r.promise(i),e&&e.call(i,i),i},when:function(e){var t=0,n=slice.call(arguments),r=n.length,i=r!==1||e&&jQuery.isFunction(e.promise)?r:0,s=i===1?e:jQuery.Deferred(),o=function(e,t,n){return function(r){t[e]=this,n[e]=arguments.length>1?slice.call(arguments):r,n===u?s.notifyWith(t,n):--i||s.resolveWith(t,n)}},u,a,f;if(r>1){u=new Array(r),a=new Array(r),f=new Array(r);for(;t0)return;readyList.resolveWith(document,[jQuery]),jQuery.fn.triggerHandler&&(jQuery(document).triggerHandler("ready"),jQuery(document).off("ready"))}}),jQuery.ready.promise=function(e){return readyList||(readyList=jQuery.Deferred(),document.readyState==="complete"?setTimeout(jQuery.ready):(document.addEventListener("DOMContentLoaded",completed,!1),window.addEventListener("load",completed,!1))),readyList.promise(e)},jQuery.ready.promise();var access=jQuery.access=function(e,t,n,r,i,s,o){var u=0,a=e.length,f=n==null;if(jQuery.type(n)==="object"){i=!0;for(u in n)jQuery.access(e,t,u,n[u],!0,s,o)}else if(r!==undefined){i=!0,jQuery.isFunction(r)||(o=!0),f&&(o?(t.call(e,r),t=null):(f=t,t=function(e,t,n){return f.call(jQuery(e),n)}));if(t)for(;u1,null,!0)},removeData:function(e){return this.each(function(){data_user.remove(this,e)})}}),jQuery.extend({queue:function(e,t,n){var r;if(e)return t=(t||"fx")+"queue",r=data_priv.get(e,t),n&&(!r||jQuery.isArray(n)?r=data_priv.access(e,t,jQuery.makeArray(n)):r.push(n)),r||[]},dequeue:function(e,t){t=t||"fx";var n=jQuery.queue(e,t),r=n.length,i=n.shift(),s=jQuery._queueHooks(e,t),o=function(){jQuery.dequeue(e,t)};i==="inprogress"&&(i=n.shift(),r--),i&&(t==="fx"&&n.unshift("inprogress"),delete s.stop,i.call(e,o,s)),!r&&s&&s.empty.fire()},_queueHooks:function(e,t){var n=t+"queueHooks";return data_priv.get(e,n)||data_priv.access(e,n,{empty:jQuery.Callbacks("once memory").add(function(){data_priv.remove(e,[t+"queue",n])})})}}),jQuery.fn.extend({queue:function(e,t){var n=2;return typeof e!="string"&&(t=e,e="fx",n--),arguments.lengthx",support.noCloneChecked=!!t.cloneNode(!0).lastChild.defaultValue})();var strundefined=typeof undefined;support.focusinBubbles="onfocusin"in window;var rkeyEvent=/^key/,rmouseEvent=/^(?:mouse|pointer|contextmenu)|click/,rfocusMorph=/^(?:focusinfocus|focusoutblur)$/,rtypenamespace=/^([^.]*)(?:\.(.+)|)$/;jQuery.event={global:{},add:function(e,t,n,r,i){var s,o,u,a,f,l,c,h,p,d,v,m=data_priv.get(e);if(!m)return;n.handler&&(s=n,n=s.handler,i=s.selector),n.guid||(n.guid=jQuery.guid++),(a=m.events)||(a=m.events={}),(o=m.handle)||(o=m.handle=function(t){return typeof jQuery!==strundefined&&jQuery.event.triggered!==t.type?jQuery.event.dispatch.apply(e,arguments):undefined}),t=(t||"").match(rnotwhite)||[""],f=t.length;while(f--){u=rtypenamespace.exec(t[f])||[],p=v=u[1],d=(u[2]||"").split(".").sort();if(!p)continue;c=jQuery.event.special[p]||{},p=(i?c.delegateType:c.bindType)||p,c=jQuery.event.special[p]||{},l=jQuery.extend({type:p,origType:v,data:r,handler:n,guid:n.guid,selector:i,needsContext:i&&jQuery.expr.match.needsContext.test(i),namespace:d.join(".")},s),(h=a[p])||(h=a[p]=[],h.delegateCount=0,(!c.setup||c.setup.call(e,r,d,o)===!1)&&e.addEventListener&&e.addEventListener(p,o,!1)),c.add&&(c.add.call(e,l),l.handler.guid||(l.handler.guid=n.guid)),i?h.splice(h.delegateCount++,0,l):h.push(l),jQuery.event.global[p]=!0}},remove:function(e,t,n,r,i){var s,o,u,a,f,l,c,h,p,d,v,m=data_priv.hasData(e)&&data_priv.get(e);if(!m||!(a=m.events))return;t=(t||"").match(rnotwhite)||[""],f=t.length;while(f--){u=rtypenamespace.exec(t[f])||[],p=v=u[1],d=(u[2]||"").split(".").sort();if(!p){for(p in a)jQuery.event.remove(e,p+t[f],n,r,!0);continue}c=jQuery.event.special[p]||{},p=(r?c.delegateType:c.bindType)||p,h=a[p]||[],u=u[2]&&new RegExp("(^|\\.)"+d.join("\\.(?:.*\\.|)")+"(\\.|$)"),o=s=h.length;while(s--)l=h[s],(i||v===l.origType)&&(!n||n.guid===l.guid)&&(!u||u.test(l.namespace))&&(!r||r===l.selector||r==="**"&&l.selector)&&(h.splice(s,1),l.selector&&h.delegateCount--,c.remove&&c.remove.call(e,l));o&&!h.length&&((!c.teardown||c.teardown.call(e,d,m.handle)===!1)&&jQuery.removeEvent(e,p,m.handle),delete a[p])}jQuery.isEmptyObject(a)&&(delete m.handle,data_priv.remove(e,"events"))},trigger:function(e,t,n,r){var i,s,o,u,a,f,l,c=[n||document],h=hasOwn.call(e,"type")?e.type:e,p=hasOwn.call(e,"namespace")?e.namespace.split("."):[];s=o=n=n||document;if(n.nodeType===3||n.nodeType===8)return;if(rfocusMorph.test(h+jQuery.event.triggered))return;h.indexOf(".")>=0&&(p=h.split("."),h=p.shift(),p.sort()),a=h.indexOf(":")<0&&"on"+h,e=e[jQuery.expando]?e:new jQuery.Event(h,typeof e=="object"&&e),e.isTrigger=r?2:3,e.namespace=p.join("."),e.namespace_re=e.namespace?new RegExp("(^|\\.)"+p.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,e.result=undefined,e.target||(e.target=n),t=t==null?[e]:jQuery.makeArray(t,[e]),l=jQuery.event.special[h]||{};if(!r&&l.trigger&&l.trigger.apply(n,t)===!1)return;if(!r&&!l.noBubble&&!jQuery.isWindow(n)){u=l.delegateType||h,rfocusMorph.test(u+h)||(s=s.parentNode);for(;s;s=s.parentNode)c.push(s),o=s;o===(n.ownerDocument||document)&&c.push(o.defaultView||o.parentWindow||window)}i=0;while((s=c[i++])&&!e.isPropagationStopped())e.type=i>1?u:l.bindType||h,f=(data_priv.get(s,"events")||{})[e.type]&&data_priv.get(s,"handle"),f&&f.apply(s,t),f=a&&s[a],f&&f.apply&&jQuery.acceptData(s)&&(e.result=f.apply(s,t),e.result===!1&&e.preventDefault());return e.type=h,!r&&!e.isDefaultPrevented()&&(!l._default||l._default.apply(c.pop(),t)===!1)&&jQuery.acceptData(n)&&a&&jQuery.isFunction(n[h])&&!jQuery.isWindow(n)&&(o=n[a],o&&(n[a]=null),jQuery.event.triggered=h,n[h](),jQuery.event.triggered=undefined,o&&(n[a]=o)),e.result},dispatch:function(e){e=jQuery.event.fix(e);var t,n,r,i,s,o=[],u=slice.call(arguments),a=(data_priv.get(this,"events")||{})[e.type]||[],f=jQuery.event.special[e.type]||{};u[0]=e,e.delegateTarget=this;if(f.preDispatch&&f.preDispatch.call(this,e)===!1)return;o=jQuery.event.handlers.call(this,e,a),t=0;while((i=o[t++])&&!e.isPropagationStopped()){e.currentTarget=i.elem,n=0;while((s=i.handlers[n++])&&!e.isImmediatePropagationStopped())if(!e.namespace_re||e.namespace_re.test(s.namespace))e.handleObj=s,e.data=s.data,r=((jQuery.event.special[s.origType]||{}).handle||s.handler).apply(i.elem,u),r!==undefined&&(e.result=r)===!1&&(e.preventDefault(),e.stopPropagation())}return f.postDispatch&&f.postDispatch.call(this,e),e.result},handlers:function(e,t){var n,r,i,s,o=[],u=t.delegateCount,a=e.target;if(u&&a.nodeType&&(!e.button||e.type!=="click"))for(;a!==this;a=a.parentNode||this)if(a.disabled!==!0||e.type!=="click"){r=[];for(n=0;n=0:jQuery.find(i,this,null,[a]).length),r[i]&&r.push(s);r.length&&o.push({elem:a,handlers:r})}return u]*)\/>/gi,rtagName=/<([\w:]+)/,rhtml=/<|&#?\w+;/,rnoInnerhtml=/<(?:script|style|link)/i,rchecked=/checked\s*(?:[^=]|=\s*.checked.)/i,rscriptType=/^$|\/(?:java|ecma)script/i,rscriptTypeMasked=/^true\/(.*)/,rcleanScript=/^\s*\s*$/g,wrapMap={option:[1,""],thead:[1,"","
    "],col:[2,"","
    "],tr:[2,"","
    "],td:[3,"","
    "],_default:[0,"",""]};wrapMap.optgroup=wrapMap.option,wrapMap.tbody=wrapMap.tfoot=wrapMap.colgroup=wrapMap.caption=wrapMap.thead,wrapMap.th=wrapMap.td,jQuery.extend({clone:function(e,t,n){var r,i,s,o,u=e.cloneNode(!0),a=jQuery.contains(e.ownerDocument,e);if(!support.noCloneChecked&&(e.nodeType===1||e.nodeType===11)&&!jQuery.isXMLDoc(e)){o=getAll(u),s=getAll(e);for(r=0,i=s.length;r0&&setGlobalEval(o,!a&&getAll(e,"script")),u},buildFragment:function(e,t,n,r){var i,s,o,u,a,f,l=t.createDocumentFragment(),c=[],h=0,p=e.length;for(;h")+u[2],f=u[0];while(f--)s=s.lastChild;jQuery.merge(c,s.childNodes),s=l.firstChild,s.textContent=""}}l.textContent="",h=0;while(i=c[h++]){if(r&&jQuery.inArray(i,r)!==-1)continue;a=jQuery.contains(i.ownerDocument,i),s=getAll(l.appendChild(i),"script"),a&&setGlobalEval(s);if(n){f=0;while(i=s[f++])rscriptType.test(i.type||"")&&n.push(i)}}return l},cleanData:function(e){var t,n,r,i,s=jQuery.event.special,o=0;for(;(n=e[o])!==undefined;o++){if(jQuery.acceptData(n)){i=n[data_priv.expando];if(i&&(t=data_priv.cache[i])){if(t.events)for(r in t.events)s[r]?jQuery.event.remove(n,r):jQuery.removeEvent(n,r,t.handle);data_priv.cache[i]&&delete data_priv.cache[i]}}delete data_user.cache[n[data_user.expando]]}}}),jQuery.fn.extend({text:function(e){return access(this,function(e){return e===undefined?jQuery.text(this):this.empty().each(function(){if(this.nodeType===1||this.nodeType===11||this.nodeType===9)this.textContent=e})},null,e,arguments.length)},append:function(){return this.domManip(arguments,function(e){if(this.nodeType===1||this.nodeType===11||this.nodeType===9){var t=manipulationTarget(this,e);t.appendChild(e)}})},prepend:function(){return this.domManip(arguments,function(e){if(this.nodeType===1||this.nodeType===11||this.nodeType===9){var t=manipulationTarget(this,e);t.insertBefore(e,t.firstChild)}})},before:function(){return this.domManip(arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this)})},after:function(){return this.domManip(arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this.nextSibling)})},remove:function(e,t){var n,r=e?jQuery.filter(e,this):this,i=0;for(;(n=r[i])!=null;i++)!t&&n.nodeType===1&&jQuery.cleanData(getAll(n)),n.parentNode&&(t&&jQuery.contains(n.ownerDocument,n)&&setGlobalEval(getAll(n,"script")),n.parentNode.removeChild(n));return this},empty:function(){var e,t=0;for(;(e=this[t])!=null;t++)e.nodeType===1&&(jQuery.cleanData(getAll(e,!1)),e.textContent="");return this},clone:function(e,t){return e=e==null?!1:e,t=t==null?e:t,this.map(function(){return jQuery.clone(this,e,t)})},html:function(e){return access(this,function(e){var t=this[0]||{},n=0,r=this.length;if(e===undefined&&t.nodeType===1)return t.innerHTML;if(typeof e=="string"&&!rnoInnerhtml.test(e)&&!wrapMap[(rtagName.exec(e)||["",""])[1].toLowerCase()]){e=e.replace(rxhtmlTag,"<$1>");try{for(;n1&&typeof h=="string"&&!support.checkClone&&rchecked.test(h))return this.each(function(n){var r=l.eq(n);p&&(e[0]=h.call(this,n,r.html())),r.domManip(e,t)});if(f){n=jQuery.buildFragment(e,this[0].ownerDocument,!1,this),r=n.firstChild,n.childNodes.length===1&&(n=r);if(r){i=jQuery.map(getAll(n,"script"),disableScript),s=i.length;for(;a1)},show:function(){return showHide(this,!0)},hide:function(){return showHide(this)},toggle:function(e){return typeof e=="boolean"?e?this.show():this.hide():this.each(function(){isHidden(this)?jQuery(this).show():jQuery(this).hide()})}}),jQuery.Tween=Tween,Tween.prototype={constructor:Tween,init:function(e,t,n,r,i,s){this.elem=e,this.prop=n,this.easing=i||"swing",this.options=t,this.start=this.now=this.cur(),this.end=r,this.unit=s||(jQuery.cssNumber[n]?"":"px")},cur:function(){var e=Tween.propHooks[this.prop];return e&&e.get?e.get(this):Tween.propHooks._default.get(this)},run:function(e){var t,n=Tween.propHooks[this.prop];return this.options.duration?this.pos=t=jQuery.easing[this.easing](e,this.options.duration*e,0,1,this.options.duration):this.pos=t=e,this.now=(this.end-this.start)*t+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),n&&n.set?n.set(this):Tween.propHooks._default.set(this),this}},Tween.prototype.init.prototype=Tween.prototype,Tween.propHooks={_default:{get:function(e){var t;return e.elem[e.prop]==null||!!e.elem.style&&e.elem.style[e.prop]!=null?(t=jQuery.css(e.elem,e.prop,""),!t||t==="auto"?0:t):e.elem[e.prop]},set:function(e){jQuery.fx.step[e.prop]?jQuery.fx.step[e.prop](e):e.elem.style&&(e.elem.style[jQuery.cssProps[e.prop]]!=null||jQuery.cssHooks[e.prop])?jQuery.style(e.elem,e.prop,e.now+e.unit):e.elem[e.prop]=e.now}}},Tween.propHooks.scrollTop=Tween.propHooks.scrollLeft={set:function(e){e.elem.nodeType&&e.elem.parentNode&&(e.elem[e.prop]=e.now)}},jQuery.easing={linear:function(e){return e},swing:function(e){return.5-Math.cos(e*Math.PI)/2}},jQuery.fx=Tween.prototype.init,jQuery.fx.step={};var fxNow,timerId,rfxtypes=/^(?:toggle|show|hide)$/,rfxnum=new RegExp("^(?:([+-])=|)("+pnum+")([a-z%]*)$","i"),rrun=/queueHooks$/,animationPrefilters=[defaultPrefilter],tweeners={"*":[function(e,t){var n=this.createTween(e,t),r=n.cur(),i=rfxnum.exec(t),s=i&&i[3]||(jQuery.cssNumber[e]?"":"px"),o=(jQuery.cssNumber[e]||s!=="px"&&+r)&&rfxnum.exec(jQuery.css(n.elem,e)),u=1,a=20;if(o&&o[3]!==s){s=s||o[3],i=i||[],o=+r||1;do u=u||".5",o/=u,jQuery.style(n.elem,e,o+s);while(u!==(u=n.cur()/r)&&u!==1&&--a)}return i&&(o=n.start=+o||+r||0,n.unit=s,n.end=i[1]?o+(i[1]+1)*i[2]:+i[2]),n}]};jQuery.Animation=jQuery.extend(Animation,{tweener:function(e,t){jQuery.isFunction(e)?(t=e,e=["*"]):e=e.split(" ");var n,r=0,i=e.length;for(;r1)},removeAttr:function(e){return this.each(function(){jQuery.removeAttr(this,e)})}}),jQuery.extend({attr:function(e,t,n){var r,i,s=e.nodeType;if(!e||s===3||s===8||s===2)return;if(typeof e.getAttribute===strundefined)return jQuery.prop(e,t,n);if(s!==1||!jQuery.isXMLDoc(e))t=t.toLowerCase(),r=jQuery.attrHooks[t]||(jQuery.expr.match.bool.test(t)?boolHook:nodeHook);if(n===undefined)return r&&"get"in r&&(i=r.get(e,t))!==null?i:(i=jQuery.find.attr(e,t),i==null?undefined:i);if(n!==null)return r&&"set"in r&&(i=r.set(e,n,t))!==undefined?i:(e.setAttribute(t,n+""),n);jQuery.removeAttr(e,t)},removeAttr:function(e,t){var n,r,i=0,s=t&&t.match(rnotwhite);if(s&&e.nodeType===1)while(n=s[i++])r=jQuery.propFix[n]||n,jQuery.expr.match.bool.test(n)&&(e[r]=!1),e.removeAttribute(n)},attrHooks:{type:{set:function(e,t){if(!support.radioValue&&t==="radio"&&jQuery.nodeName(e,"input")){var n=e.value;return e.setAttribute("type",t),n&&(e.value=n),t}}}}}),boolHook={set:function(e,t,n){return t===!1?jQuery.removeAttr(e,n):e.setAttribute(n,n),n}},jQuery.each(jQuery.expr.match.bool.source.match(/\w+/g),function(e,t){var n=attrHandle[t]||jQuery.find.attr;attrHandle[t]=function(e,t,r){var i,s;return r||(s=attrHandle[t],attrHandle[t]=i,i=n(e,t,r)!=null?t.toLowerCase():null,attrHandle[t]=s),i}});var rfocusable=/^(?:input|select|textarea|button)$/i;jQuery.fn.extend({prop:function(e,t){return access(this,jQuery.prop,e,t,arguments.length>1)},removeProp:function(e){return this.each(function(){delete this[jQuery.propFix[e]||e]})}}),jQuery.extend({propFix:{"for":"htmlFor","class":"className"},prop:function(e,t,n){var r,i,s,o=e.nodeType;if(!e||o===3||o===8||o===2)return;return s=o!==1||!jQuery.isXMLDoc(e),s&&(t=jQuery.propFix[t]||t,i=jQuery.propHooks[t]),n!==undefined?i&&"set"in i&&(r=i.set(e,n,t))!==undefined?r:e[t]=n:i&&"get"in i&&(r=i.get(e,t))!==null?r:e[t]},propHooks:{tabIndex:{get:function(e){return e.hasAttribute("tabindex")||rfocusable.test(e.nodeName)||e.href?e.tabIndex:-1}}}}),support.optSelected||(jQuery.propHooks.selected={get:function(e){var t=e.parentNode;return t&&t.parentNode&&t.parentNode.selectedIndex,null}}),jQuery.each(["tabIndex","readOnly","maxLength","cellSpacing","cellPadding","rowSpan","colSpan","useMap","frameBorder","contentEditable"],function(){jQuery.propFix[this.toLowerCase()]=this});var rclass=/[\t\r\n\f]/g;jQuery.fn.extend({addClass:function(e){var t,n,r,i,s,o,u=typeof e=="string"&&e,a=0,f=this.length;if(jQuery.isFunction(e))return this.each(function(t){jQuery(this).addClass(e.call(this,t,this.className))});if(u){t=(e||"").match(rnotwhite)||[];for(;a=0)r=r.replace(" "+i+" "," ");o=e?jQuery.trim(r):"",n.className!==o&&(n.className=o)}}}return this},toggleClass:function(e,t){var n=typeof e;return typeof t=="boolean"&&n==="string"?t?this.addClass(e):this.removeClass(e):jQuery.isFunction(e)?this.each(function(n){jQuery(this).toggleClass(e.call(this,n,this.className,t),t)}):this.each(function(){if(n==="string"){var t,r=0,i=jQuery(this),s=e.match(rnotwhite)||[];while(t=s[r++])i.hasClass(t)?i.removeClass(t):i.addClass(t)}else if(n===strundefined||n==="boolean")this.className&&data_priv.set(this,"__className__",this.className),this.className=this.className||e===!1?"":data_priv.get(this,"__className__")||""})},hasClass:function(e){var t=" "+e+" ",n=0,r=this.length;for(;n=0)return!0;return!1}});var rreturn=/\r/g;jQuery.fn.extend({val:function(e){var t,n,r,i=this[0];if(!arguments.length){if(i)return t=jQuery.valHooks[i.type]||jQuery.valHooks[i.nodeName.toLowerCase()],t&&"get"in t&&(n=t.get(i,"value"))!==undefined?n:(n=i.value,typeof n=="string"?n.replace(rreturn,""):n==null?"":n);return}return r=jQuery.isFunction(e),this.each(function(n){var i;if(this.nodeType!==1)return;r?i=e.call(this,n,jQuery(this).val()):i=e,i==null?i="":typeof i=="number"?i+="":jQuery.isArray(i)&&(i=jQuery.map(i,function(e){return e==null?"":e+""})),t=jQuery.valHooks[this.type]||jQuery.valHooks[this.nodeName.toLowerCase()];if(!t||!("set"in t)||t.set(this,i,"value")===undefined)this.value=i})}}),jQuery.extend({valHooks:{option:{get:function(e){var t=jQuery.find.attr(e,"value");return t!=null?t:jQuery.trim(jQuery.text(e))}},select:{get:function(e){var t,n,r=e.options,i=e.selectedIndex,s=e.type==="select-one"||i<0,o=s?null:[],u=s?i+1:r.length,a=i<0?u:s?i:0;for(;a=0)n=!0}return n||(e.selectedIndex=-1),s}}}}),jQuery.each(["radio","checkbox"],function(){jQuery.valHooks[this]={set:function(e,t){if(jQuery.isArray(t))return e.checked=jQuery.inArray(jQuery(e).val(),t)>=0}},support.checkOn||(jQuery.valHooks[this].get=function(e){return e.getAttribute("value")===null?"on":e.value})}),jQuery.each("blur focus focusin focusout load resize scroll unload click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup error contextmenu".split(" "),function(e,t){jQuery.fn[t]=function(e,n){return arguments.length>0?this.on(t,null,e,n):this.trigger(t)}}),jQuery.fn.extend({hover:function(e,t){return this.mouseenter(e).mouseleave(t||e)},bind:function(e,t,n){return this.on(e,null,t,n)},unbind:function(e,t){return this.off(e,null,t)},delegate:function(e,t,n,r){return this.on(t,e,n,r)},undelegate:function(e,t,n){return arguments.length===1?this.off(e,"**"):this.off(t,e||"**",n)}});var nonce=jQuery.now(),rquery=/\?/;jQuery.parseJSON=function(e){return JSON.parse(e+"")},jQuery.parseXML=function(e){var t,n;if(!e||typeof e!="string")return null;try{n=new DOMParser,t=n.parseFromString(e,"text/xml")}catch(r){t=undefined}return(!t||t.getElementsByTagName("parsererror").length)&&jQuery.error("Invalid XML: "+e),t};var ajaxLocParts,ajaxLocation,rhash=/#.*$/,rts=/([?&])_=[^&]*/,rheaders=/^(.*?):[ \t]*([^\r\n]*)$/mg,rlocalProtocol=/^(?:about|app|app-storage|.+-extension|file|res|widget):$/,rnoContent=/^(?:GET|HEAD)$/,rprotocol=/^\/\//,rurl=/^([\w.+-]+:)(?:\/\/(?:[^\/?#]*@|)([^\/?#:]*)(?::(\d+)|)|)/,prefilters={},transports={},allTypes="*/".concat("*");try{ajaxLocation=location.href}catch(e){ajaxLocation=document.createElement("a"),ajaxLocation.href="",ajaxLocation=ajaxLocation.href}ajaxLocParts=rurl.exec(ajaxLocation.toLowerCase())||[],jQuery.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:ajaxLocation,type:"GET",isLocal:rlocalProtocol.test(ajaxLocParts[1]),global:!0,processData:!0,async:!0,contentType:"application/x-www-form-urlencoded; charset=UTF-8",accepts:{"*":allTypes,text:"text/plain",html:"text/html",xml:"application/xml, text/xml",json:"application/json, text/javascript"},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText",json:"responseJSON"},converters:{"* text":String,"text html":!0,"text json":jQuery.parseJSON,"text xml":jQuery.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(e,t){return t?ajaxExtend(ajaxExtend(e,jQuery.ajaxSettings),t):ajaxExtend(jQuery.ajaxSettings,e)},ajaxPrefilter:addToPrefiltersOrTransports(prefilters),ajaxTransport:addToPrefiltersOrTransports(transports),ajax:function(e,t){function S(e,t,s,u){var f,m,g,b,E,S=t;if(y===2)return;y=2,o&&clearTimeout(o),n=undefined,i=u||"",w.readyState=e>0?4:0,f=e>=200&&e<300||e===304,s&&(b=ajaxHandleResponses(l,w,s)),b=ajaxConvert(l,b,w,f);if(f)l.ifModified&&(E=w.getResponseHeader("Last-Modified"),E&&(jQuery.lastModified[r]=E),E=w.getResponseHeader("etag"),E&&(jQuery.etag[r]=E)),e===204||l.type==="HEAD"?S="nocontent":e===304?S="notmodified":(S=b.state,m=b.data,g=b.error,f=!g);else{g=S;if(e||!S)S="error",e<0&&(e=0)}w.status=e,w.statusText=(t||S)+"",f?p.resolveWith(c,[m,S,w]):p.rejectWith(c,[w,S,g]),w.statusCode(v),v=undefined,a&&h.trigger(f?"ajaxSuccess":"ajaxError",[w,l,f?m:g]),d.fireWith(c,[w,S]),a&&(h.trigger("ajaxComplete",[w,l]),--jQuery.active||jQuery.event.trigger("ajaxStop"))}typeof e=="object"&&(t=e,e=undefined),t=t||{};var n,r,i,s,o,u,a,f,l=jQuery.ajaxSetup({},t),c=l.context||l,h=l.context&&(c.nodeType||c.jquery)?jQuery(c):jQuery.event,p=jQuery.Deferred(),d=jQuery.Callbacks("once memory"),v=l.statusCode||{},m={},g={},y=0,b="canceled",w={readyState:0,getResponseHeader:function(e){var t;if(y===2){if(!s){s={};while(t=rheaders.exec(i))s[t[1].toLowerCase()]=t[2]}t=s[e.toLowerCase()]}return t==null?null:t},getAllResponseHeaders:function(){return y===2?i:null},setRequestHeader:function(e,t){var n=e.toLowerCase();return y||(e=g[n]=g[n]||e,m[e]=t),this},overrideMimeType:function(e){return y||(l.mimeType=e),this},statusCode:function(e){var t;if(e)if(y<2)for(t in e)v[t]=[v[t],e[t]];else w.always(e[w.status]);return this},abort:function(e){var t=e||b;return n&&n.abort(t),S(0,t),this}};p.promise(w).complete=d.add,w.success=w.done,w.error=w.fail,l.url=((e||l.url||ajaxLocation)+"").replace(rhash,"").replace(rprotocol,ajaxLocParts[1]+"//"),l.type=t.method||t.type||l.method||l.type,l.dataTypes=jQuery.trim(l.dataType||"*").toLowerCase().match(rnotwhite)||[""],l.crossDomain==null&&(u=rurl.exec(l.url.toLowerCase()),l.crossDomain=!(!u||u[1]===ajaxLocParts[1]&&u[2]===ajaxLocParts[2]&&(u[3]||(u[1]==="http:"?"80":"443"))===(ajaxLocParts[3]||(ajaxLocParts[1]==="http:"?"80":"443")))),l.data&&l.processData&&typeof l.data!="string"&&(l.data=jQuery.param(l.data,l.traditional)),inspectPrefiltersOrTransports(prefilters,l,t,w);if(y===2)return w;a=l.global,a&&jQuery.active++===0&&jQuery.event.trigger("ajaxStart"),l.type=l.type.toUpperCase(),l.hasContent=!rnoContent.test(l.type),r=l.url,l.hasContent||(l.data&&(r=l.url+=(rquery.test(r)?"&":"?")+l.data,delete l.data),l.cache===!1&&(l.url=rts.test(r)?r.replace(rts,"$1_="+nonce++):r+(rquery.test(r)?"&":"?")+"_="+nonce++)),l.ifModified&&(jQuery.lastModified[r]&&w.setRequestHeader("If-Modified-Since",jQuery.lastModified[r]),jQuery.etag[r]&&w.setRequestHeader("If-None-Match",jQuery.etag[r])),(l.data&&l.hasContent&&l.contentType!==!1||t.contentType)&&w.setRequestHeader("Content-Type",l.contentType),w.setRequestHeader("Accept",l.dataTypes[0]&&l.accepts[l.dataTypes[0]]?l.accepts[l.dataTypes[0]]+(l.dataTypes[0]!=="*"?", "+allTypes+"; q=0.01":""):l.accepts["*"]);for(f in l.headers)w.setRequestHeader(f,l.headers[f]);if(!l.beforeSend||l.beforeSend.call(c,w,l)!==!1&&y!==2){b="abort";for(f in{success:1,error:1,complete:1})w[f](l[f]);n=inspectPrefiltersOrTransports(transports,l,t,w);if(!n)S(-1,"No Transport");else{w.readyState=1,a&&h.trigger("ajaxSend",[w,l]),l.async&&l.timeout>0&&(o=setTimeout(function(){w.abort("timeout")},l.timeout));try{y=1,n.send(m,S)}catch(E){if(!(y<2))throw E;S(-1,E)}}return w}return w.abort()},getJSON:function(e,t,n){return jQuery.get(e,t,n,"json")},getScript:function(e,t){return jQuery.get(e,undefined,t,"script")}}),jQuery.each(["get","post"],function(e,t){jQuery[t]=function(e,n,r,i){return jQuery.isFunction(n)&&(i=i||r,r=n,n=undefined),jQuery.ajax({url:e,type:t,dataType:i,data:n,success:r})}}),jQuery.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(e,t){jQuery.fn[t]=function(e){return this.on(t,e)}}),jQuery._evalUrl=function(e){return jQuery.ajax({url:e,type:"GET",dataType:"script",async:!1,global:!1,"throws":!0})},jQuery.fn.extend({wrapAll:function(e){var t;return jQuery.isFunction(e)?this.each(function(t){jQuery(this).wrapAll(e.call(this,t))}):(this[0]&&(t=jQuery(e,this[0].ownerDocument).eq(0).clone(!0),this[0].parentNode&&t.insertBefore(this[0]),t.map(function(){var e=this;while(e.firstElementChild)e=e.firstElementChild;return e}).append(this)),this)},wrapInner:function(e){return jQuery.isFunction(e)?this.each(function(t){jQuery(this).wrapInner(e.call(this,t))}):this.each(function(){var t=jQuery(this),n=t.contents();n.length?n.wrapAll(e):t.append(e)})},wrap:function(e){var t=jQuery.isFunction(e);return this.each(function(n){jQuery(this).wrapAll(t?e.call(this,n):e)})},unwrap:function(){return this.parent().each(function(){jQuery.nodeName(this,"body")||jQuery(this).replaceWith(this.childNodes)}).end()}}),jQuery.expr.filters.hidden=function(e){return e.offsetWidth<=0&&e.offsetHeight<=0},jQuery.expr.filters.visible=function(e){return!jQuery.expr.filters.hidden(e)};var r20=/%20/g,rbracket=/\[\]$/,rCRLF=/\r?\n/g,rsubmitterTypes=/^(?:submit|button|image|reset|file)$/i,rsubmittable=/^(?:input|select|textarea|keygen)/i;jQuery.param=function(e,t){var n,r=[],i=function(e,t){t=jQuery.isFunction(t)?t():t==null?"":t,r[r.length]=encodeURIComponent(e)+"="+encodeURIComponent(t)};t===undefined&&(t=jQuery.ajaxSettings&&jQuery.ajaxSettings.traditional);if(jQuery.isArray(e)||e.jquery&&!jQuery.isPlainObject(e))jQuery.each(e,function(){i(this.name,this.value)});else for(n in e)buildParams(n,e[n],t,i);return r.join("&").replace(r20,"+")},jQuery.fn.extend({serialize:function(){return jQuery.param(this.serializeArray())},serializeArray:function(){return this.map(function(){var e=jQuery.prop(this,"elements");return e?jQuery.makeArray(e):this}).filter(function(){var e=this.type;return this.name&&!jQuery(this).is(":disabled")&&rsubmittable.test(this.nodeName)&&!rsubmitterTypes.test(e)&&(this.checked||!rcheckableType.test(e))}).map(function(e,t){var n=jQuery(this).val();return n==null?null:jQuery.isArray(n)?jQuery.map(n,function(e){return{name:t.name,value:e.replace(rCRLF,"\r\n")}}):{name:t.name,value:n.replace(rCRLF,"\r\n")}}).get()}}),jQuery.ajaxSettings.xhr=function(){try{return new XMLHttpRequest}catch(e){}};var xhrId=0,xhrCallbacks={},xhrSuccessStatus={0:200,1223:204},xhrSupported=jQuery.ajaxSettings.xhr();window.ActiveXObject&&jQuery(window).on("unload",function(){for(var e in xhrCallbacks)xhrCallbacks[e]()}),support.cors=!!xhrSupported&&"withCredentials"in xhrSupported,support.ajax=xhrSupported=!!xhrSupported,jQuery.ajaxTransport(function(e){var t;if(support.cors||xhrSupported&&!e.crossDomain)return{send:function(n,r){var i,s=e.xhr(),o=++xhrId;s.open(e.type,e.url,e.async,e.username,e.password);if(e.xhrFields)for(i in e.xhrFields)s[i]=e.xhrFields[i];e.mimeType&&s.overrideMimeType&&s.overrideMimeType(e.mimeType),!e.crossDomain&&!n["X-Requested-With"]&&(n["X-Requested-With"]="XMLHttpRequest");for(i in n)s.setRequestHeader(i,n[i]);t=function(e){return function(){t&&(delete xhrCallbacks[o],t=s.onload=s.onerror=null,e==="abort"?s.abort():e==="error"?r(s.status,s.statusText):r(xhrSuccessStatus[s.status]||s.status,s.statusText,typeof s.responseText=="string"?{text:s.responseText}:undefined,s.getAllResponseHeaders()))}},s.onload=t(),s.onerror=t("error"),t=xhrCallbacks[o]=t("abort");try{s.send(e.hasContent&&e.data||null)}catch(u){if(t)throw u}},abort:function(){t&&t()}}}),jQuery.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/(?:java|ecma)script/},converters:{"text script":function(e){return jQuery.globalEval(e),e}}}),jQuery.ajaxPrefilter("script",function(e){e.cache===undefined&&(e.cache=!1),e.crossDomain&&(e.type="GET")}),jQuery.ajaxTransport("script",function(e){if(e.crossDomain){var t,n;return{send:function(r,i){t=jQuery(" + + + + + + + + + + + + + + + diff --git a/search_index.json b/search_index.json new file mode 100644 index 0000000..3cffce7 --- /dev/null +++ b/search_index.json @@ -0,0 +1 @@ +{"version":"0.5.7","fields":[{"name":"title","boost":10},{"name":"body","boost":1}],"ref":"url","documentStore":{"store":{"index.html":["0.13.x","1.0","2","2.0","3","3.0","6","api","app","babel","boilerpl","branch","browserstack","bug","chang","classname=\"detail","classname=\"mast","cn","codemod","codepen","commonj","component={about","component={app","component={nomatch","component={us","componentdidmount","const","createclass","detail","div","document.bodi","ember","ember'","es2015","es6","etc","fantast","finduserbyid","finduserbyid(this.props.params.userid","gitbook","guide.github.io/react","h1>users{this.state.user.name}{user.name}{user.name}{user.name}go","beforeunload","behavior","boolean(默认:fals","bootstrap","callback","callback(error","cb","cb(err","cb(null","child","children","childrout","class","class=\"active\">michaelgo","foomichaelfoousersgo","this.history.isactive(this.props.to","this.history.pushstate(nul","this.history.replacestate(nul","this.prop","this.props.children","this.props.histori","this.props.history.pushstate(nul","this.props.history.pushstate(st","this.props.main","this.props.param","this.props.queri","this.props.routeparam","this.props.sidebar","this.props[nam","this.props}/>appinboxmessageaboutinboxaboutinboxabout{nam","div>{this.nam","div>{this.props.nam","document","document.bodi","doesn't","don't","down","dynam","effect","el","element","embrac","entri","error","es6","etc","exactli","exampl","explicitli","export","extend","extra","extraprop={someth","fanci","featur","file","file/:filenam","file/:filename.?:ext","find","fire","float","flux","fn","fn(nextstat","folk","foo","foo.contexttyp","foo=\"bar","foo}{routes}{routes}homeabouthomemateuszmateuszhomehomewelcom","document.bodi","from=\"messages/:id","function","h1>appinboxaboutmessag","hook","import","inbox","inbox/messages/5","inbox/messages/:id","index","index.html","indexrout","jsx","li>aboutinbox":{"docs":{},"<":{"docs":{},"a":{"docs":{},"b":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"docs/Introduction.html":{"ref":"docs/Introduction.html","tf":0.003194888178913738}}}}}}}}},"/":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"docs/guides/advanced/NavigatingOutsideOfComponents.html":{"ref":"docs/guides/advanced/NavigatingOutsideOfComponents.html","tf":0.041666666666666664}}}}}}},".":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{"docs/guides/basics/Histories.html":{"ref":"docs/guides/basics/Histories.html","tf":0.005025125628140704}}}}},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{},"(":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"docs/guides/basics/Histories.html":{"ref":"docs/guides/basics/Histories.html","tf":0.005025125628140704}}}}}}}}}}}}},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"(":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},".":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"c":{"docs":{},"(":{"docs":{},"_":{"docs":{},"_":{"docs":{},"d":{"docs":{},"i":{"docs":{},"r":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"docs/guides/basics/Histories.html":{"ref":"docs/guides/basics/Histories.html","tf":0.005025125628140704}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"!":{"docs":{},"<":{"docs":{},"/":{"docs":{},"d":{"docs":{},"i":{"docs":{},"v":{"docs":{"docs/guides/basics/RouteConfiguration.html":{"ref":"docs/guides/basics/RouteConfiguration.html","tf":0.002857142857142857}}}}}}}}},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{"docs/guides/basics/RouteConfiguration.html":{"ref":"docs/guides/basics/RouteConfiguration.html","tf":0.0014285714285714286}},"e":{"docs":{},"服":{"docs":{},"务":{"docs":{},"器":{"docs":{},"也":{"docs":{},"有":{"docs":{},"类":{"docs":{},"似":{"docs":{},"的":{"docs":{},"方":{"docs":{},"式":{"docs":{},",":{"docs":{},"创":{"docs":{},"建":{"docs":{},"一":{"docs":{},"个":{"docs":{},".":{"docs":{},"h":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"c":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"docs/guides/basics/Histories.html":{"ref":"docs/guides/basics/Histories.html","tf":0.002512562814070352}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"b":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{},"/":{"1":{"2":{"3":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.003232758620689655}}},"docs":{}},"docs":{}},"docs":{},":":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{},"d":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0010775862068965517}}}}}}}}}}}}},"i":{"docs":{},"l":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462}}}},"s":{"docs":{},"o":{"docs":{},"l":{"docs":{},"u":{"docs":{},"t":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462}}}}}}}},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"v":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.005387931034482759},"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.002630040911747516}},"e":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.003771551724137931},"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0011689070718877848}},"e":{"docs":{},"=":{"docs":{},"\"":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"\"":{"docs":{},">":{"docs":{},"{":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"}":{"docs":{},"<":{"docs":{},"/":{"docs":{},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{},"k":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0010775862068965517}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"b":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{},"<":{"docs":{},"/":{"docs":{},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{},"k":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"u":{"docs":{},"r":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"\"":{"docs":{},">":{"docs":{},"{":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"}":{"docs":{},"<":{"docs":{},"/":{"docs":{},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{},"k":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0010775862068965517}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0035067212156633548}},"y":{"docs":{},"l":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0021551724137931034},"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0011689070718877848}},"e":{"docs":{},"=":{"docs":{},"{":{"docs":{},"{":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"o":{"docs":{},"r":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0010775862068965517}}}}}}}}}}}}}}},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{},"e":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"l":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0008766803039158387}}}}}}}}}}}}}},"o":{"docs":{},"n":{"docs":{"docs/Glossary.html":{"ref":"docs/Glossary.html","tf":0.017467248908296942},"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0008766803039158387},"docs/guides/advanced/NavigatingOutsideOfComponents.html":{"ref":"docs/guides/advanced/NavigatingOutsideOfComponents.html","tf":0.041666666666666664}}}}},"u":{"docs":{},"a":{"docs":{},"l":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462}}}}}},"c":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}}},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"docs/guides/advanced/ComponentLifecycle.html":{"ref":"docs/guides/advanced/ComponentLifecycle.html","tf":0.051118210862619806},"docs/guides/basics/IndexRoutes.html":{"ref":"docs/guides/basics/IndexRoutes.html","tf":0.037037037037037035}},"s":{"docs":{},"/":{"1":{"2":{"3":{"docs":{"docs/guides/advanced/ComponentLifecycle.html":{"ref":"docs/guides/advanced/ComponentLifecycle.html","tf":0.006389776357827476},"docs/guides/basics/Histories.html":{"ref":"docs/guides/basics/Histories.html","tf":0.010050251256281407}}},"docs":{}},"docs":{}},"docs":{},":":{"docs":{},"a":{"docs":{},"c":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{},"d":{"docs":{"docs/guides/advanced/ComponentLifecycle.html":{"ref":"docs/guides/advanced/ComponentLifecycle.html","tf":0.003194888178913738}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"n":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462}},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0021551724137931034}}}}}}}}}}}}}}}}},"s":{"docs":{},"w":{"docs":{},"e":{"docs":{},"r":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462}}}}}},"y":{"docs":{},"m":{"docs":{},"o":{"docs":{},"r":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}}},"t":{"docs":{},"h":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462}}}}}},"r":{"docs":{},"g":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0010775862068965517},"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0008766803039158387}}}}}}}},"r":{"docs":{},"a":{"docs":{},"y":{"docs":{},"<":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"o":{"docs":{},"n":{"docs":{"docs/Glossary.html":{"ref":"docs/Glossary.html","tf":0.002911208151382824}}}}}}}},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"docs/Glossary.html":{"ref":"docs/Glossary.html","tf":0.005822416302765648}}}}}}}}}},"c":{"docs":{},"h":{"docs":{},"i":{"docs":{},"v":{"docs":{"docs/Introduction.html":{"ref":"docs/Introduction.html","tf":0.006389776357827476}}}}}},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462}}}}}}},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"g":{"docs":{},"n":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0032144944476914087}},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0021551724137931034}}}}}}}}}}}}}}},"a":{"docs":{},"p":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462}}}},"k":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}},"y":{"docs":{},"n":{"docs":{},"c":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462}},"s":{"docs":{},"t":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}}}}}},"d":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462}},"d":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0014611338398597311}},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{"docs/Introduction.html":{"ref":"docs/Introduction.html","tf":0.001597444089456869}}}}}}}}}}}}},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"l":{"docs":{},"e":{"docs":{},"r":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}},"=":{"docs":{},"{":{"docs":{},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0020455873758036236}}}}}}}}}}}}}}}}},"i":{"docs":{},"t":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462}}}}}},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{},"w":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}}},"o":{"docs":{},"n":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462}},"g":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462}}}}}},"v":{"docs":{},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0008766803039158387}}}}}},"w":{"docs":{},"a":{"docs":{},"y":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}}}},"b":{"docs":{},"a":{"docs":{},"b":{"docs":{},"e":{"docs":{},"l":{"docs":{"index.html":{"ref":"index.html","tf":0.007518796992481203}}}}},"c":{"docs":{},"k":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0008766803039158387}},"<":{"docs":{},"/":{"docs":{},"d":{"docs":{},"i":{"docs":{},"v":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0010775862068965517}}}}}}}}},"r":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0016163793103448276},"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.002630040911747516}},"'":{"docs":{},")":{"docs":{},"}":{"docs":{},">":{"docs":{},"g":{"docs":{},"o":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0010775862068965517}}}}}}}}},"z":{"docs":{"docs/Introduction.html":{"ref":"docs/Introduction.html","tf":0.004792332268370607}}}},"o":{"docs":{},"i":{"docs":{},"l":{"docs":{},"e":{"docs":{},"r":{"docs":{},"p":{"docs":{},"l":{"docs":{"index.html":{"ref":"index.html","tf":0.007518796992481203}}}}}}}},"o":{"docs":{},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"n":{"docs":{},"(":{"docs":{},"默":{"docs":{},"认":{"docs":{},":":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0010775862068965517}}}}}}}}}}}}}},"t":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"a":{"docs":{},"p":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0005387931034482759}}}}}}}}},"s":{"docs":{},"s":{"docs":{},"@":{"docs":{},"b":{"docs":{},"i":{"docs":{},"g":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{"docs/Introduction.html":{"ref":"docs/Introduction.html","tf":0.003194888178913738}}}}}}}}}}}},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{},"h":{"docs":{"index.html":{"ref":"index.html","tf":0.007518796992481203}}}}}},"o":{"docs":{},"w":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0020455873758036236},"docs/guides/basics/Histories.html":{"ref":"docs/guides/basics/Histories.html","tf":0.005025125628140704}},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{"index.html":{"ref":"index.html","tf":0.005012531328320802}}}}}}},"h":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{"docs/guides/advanced/NavigatingOutsideOfComponents.html":{"ref":"docs/guides/advanced/NavigatingOutsideOfComponents.html","tf":0.05555555555555555},"docs/guides/basics/Histories.html":{"ref":"docs/guides/basics/Histories.html","tf":0.03015075376884422}}},"y":{"docs":{},".":{"docs":{},"p":{"docs":{},"u":{"docs":{},"s":{"docs":{},"h":{"docs":{},"(":{"docs":{},"'":{"docs":{},"/":{"docs":{},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"/":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"h":{"docs":{"docs/guides/advanced/NavigatingOutsideOfComponents.html":{"ref":"docs/guides/advanced/NavigatingOutsideOfComponents.html","tf":0.027777777777777776}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"k":{"docs":{},"e":{"docs":{},"n":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462}}}}},"u":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462}}}}}}},"e":{"docs":{},"a":{"docs":{},"k":{"docs":{"docs/Introduction.html":{"ref":"docs/Introduction.html","tf":0.009584664536741214}}}}}},"u":{"docs":{},"g":{"docs":{"index.html":{"ref":"index.html","tf":0.007518796992481203}}},"t":{"docs":{},"t":{"docs":{},"o":{"docs":{},"n":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462}}}}}}},"e":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462}},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0011689070718877848}},"e":{"docs":{},"u":{"docs":{},"n":{"docs":{},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0005387931034482759},"docs/Glossary.html":{"ref":"docs/Glossary.html","tf":0.002911208151382824}}}}}}}}}}}},"h":{"docs":{},"a":{"docs":{},"v":{"docs":{},"i":{"docs":{},"o":{"docs":{},"r":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0016163793103448276},"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0014611338398597311}}}}}}}},"c":{"docs":{},"a":{"docs":{},"m":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}},"o":{"docs":{},"m":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462}}}}},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462}}}}},"w":{"docs":{},"e":{"docs":{},"e":{"docs":{},"n":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462}}}}}}}}},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{"index.html":{"ref":"index.html","tf":0.015037593984962405},"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0017533606078316774}}}},"r":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462}}}}}}},"i":{"docs":{},"l":{"docs":{},"d":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0005387931034482759},"docs/Introduction.html":{"ref":"docs/Introduction.html","tf":0.03194888178913738}},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.007004310344827586},"docs/Glossary.html":{"ref":"docs/Glossary.html","tf":0.001455604075691412},"docs/Introduction.html":{"ref":"docs/Introduction.html","tf":0.004792332268370607},"docs/guides/advanced/ComponentLifecycle.html":{"ref":"docs/guides/advanced/ComponentLifecycle.html","tf":0.003194888178913738}},",":{"docs":{},"路":{"docs":{},"由":{"docs":{},"组":{"docs":{},"件":{"docs":{},"还":{"docs":{},"会":{"docs":{},"接":{"docs":{},"收":{"docs":{},"以":{"docs":{},"下":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{"docs/Glossary.html":{"ref":"docs/Glossary.html","tf":0.001455604075691412}}}}}}}}}}}}}}}}},"、":{"docs":{},"p":{"docs":{},"a":{"docs":{},"r":{"docs":{},"a":{"docs":{},"m":{"docs":{},"s":{"docs":{},"、":{"docs":{},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{"docs/guides/advanced/ComponentLifecycle.html":{"ref":"docs/guides/advanced/ComponentLifecycle.html","tf":0.006389776357827476}}}}}}}}}}}}}}},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.003232758620689655},"docs/Introduction.html":{"ref":"docs/Introduction.html","tf":0.003194888178913738},"docs/guides/basics/RouteConfiguration.html":{"ref":"docs/guides/basics/RouteConfiguration.html","tf":0.005714285714285714}}}}}},"d":{"docs":{},"e":{"docs":{},"p":{"docs":{},"t":{"docs":{},"h":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}},"e":{"docs":{},"+":{"docs":{},"i":{"docs":{},"d":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}}}}}}}}}},"u":{"docs":{},"r":{"docs":{},"n":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462}}}}}},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.017241379310344827},"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0014611338398597311}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0021551724137931034}},"e":{"docs":{},"=":{"docs":{},"\"":{"docs":{},"d":{"docs":{},"e":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{"index.html":{"ref":"index.html","tf":0.005012531328320802}}}}}}}},"m":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{"index.html":{"ref":"index.html","tf":0.005012531328320802}}}},"i":{"docs":{},"n":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0021551724137931034}}}}}},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"b":{"docs":{},"a":{"docs":{},"r":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0021551724137931034}}}}}}}}}},"{":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"}":{"docs":{},">":{"docs":{},"<":{"docs":{},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{},"k":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0010775862068965517}}}}}}}}}}}}}}}}}}}}}}}},"=":{"docs":{},"\"":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"\"":{"docs":{},">":{"docs":{},"m":{"docs":{},"i":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"e":{"docs":{},"l":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0010775862068965517}}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},"e":{"docs":{},"l":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462}}}}}},"s":{"docs":{},"e":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0011689070718877848}}}}}},"n":{"docs":{"index.html":{"ref":"index.html","tf":0.005012531328320802}}},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0021551724137931034},"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0011689070718877848}},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{"index.html":{"ref":"index.html","tf":0.010025062656641603}}}}},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{"index.html":{"ref":"index.html","tf":0.007518796992481203}}}}}}},"m":{"docs":{},"m":{"docs":{},"o":{"docs":{},"n":{"docs":{},"j":{"docs":{"index.html":{"ref":"index.html","tf":0.002506265664160401}}}}},"i":{"docs":{},"t":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}},"u":{"docs":{},"n":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462}}}},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"docs/guides/basics/RouteMatching.html":{"ref":"docs/guides/basics/RouteMatching.html","tf":0.03076923076923077}}}}}},"p":{"docs":{},"o":{"docs":{},"n":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.010775862068965518},"docs/Glossary.html":{"ref":"docs/Glossary.html","tf":0.033478893740902474},"docs/Introduction.html":{"ref":"docs/Introduction.html","tf":0.009584664536741214},"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0017533606078316774},"docs/guides/basics/RouteConfiguration.html":{"ref":"docs/guides/basics/RouteConfiguration.html","tf":0.014285714285714285}},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"=":{"docs":{},"{":{"docs":{},"a":{"docs":{},"b":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"index.html":{"ref":"index.html","tf":0.005012531328320802},"docs/Introduction.html":{"ref":"docs/Introduction.html","tf":0.006389776357827476},"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0011689070718877848},"docs/guides/basics/Histories.html":{"ref":"docs/guides/basics/Histories.html","tf":0.005025125628140704},"docs/guides/basics/RouteConfiguration.html":{"ref":"docs/guides/basics/RouteConfiguration.html","tf":0.011428571428571429}}}}}},"p":{"docs":{},"p":{"docs":{"index.html":{"ref":"index.html","tf":0.005012531328320802},"docs/API.html":{"ref":"docs/API.html","tf":0.005387931034482759},"docs/Introduction.html":{"ref":"docs/Introduction.html","tf":0.006389776357827476},"docs/Troubleshooting.html":{"ref":"docs/Troubleshooting.html","tf":0.0425531914893617},"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0011689070718877848},"docs/guides/advanced/ComponentLifecycle.html":{"ref":"docs/guides/advanced/ComponentLifecycle.html","tf":0.006389776357827476},"docs/guides/basics/Histories.html":{"ref":"docs/guides/basics/Histories.html","tf":0.005025125628140704},"docs/guides/basics/IndexRoutes.html":{"ref":"docs/guides/basics/IndexRoutes.html","tf":0.037037037037037035},"docs/guides/basics/RouteConfiguration.html":{"ref":"docs/guides/basics/RouteConfiguration.html","tf":0.011428571428571429}}}},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"g":{"docs":{},"n":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}}}}},"c":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"docs/guides/advanced/ComponentLifecycle.html":{"ref":"docs/guides/advanced/ComponentLifecycle.html","tf":0.006389776357827476},"docs/guides/basics/IndexRoutes.html":{"ref":"docs/guides/basics/IndexRoutes.html","tf":0.037037037037037035}}}}}}}}},"n":{"docs":{},"o":{"docs":{},"m":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"index.html":{"ref":"index.html","tf":0.005012531328320802},"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}}}}}}},"u":{"docs":{},"s":{"docs":{"index.html":{"ref":"index.html","tf":0.010025062656641603},"docs/API.html":{"ref":"docs/API.html","tf":0.0021551724137931034}},"e":{"docs":{},"r":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0010775862068965517}}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"o":{"docs":{},"n":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0010775862068965517}}}}}}}},"g":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"p":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0021551724137931034}}}}}}},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0021551724137931034}}}}}}}},"i":{"docs":{},"n":{"docs":{},"b":{"docs":{},"o":{"docs":{},"x":{"docs":{"docs/Introduction.html":{"ref":"docs/Introduction.html","tf":0.006389776357827476},"docs/guides/basics/RouteConfiguration.html":{"ref":"docs/guides/basics/RouteConfiguration.html","tf":0.011428571428571429}}}}},"v":{"docs":{},"o":{"docs":{},"i":{"docs":{},"c":{"docs":{"docs/guides/advanced/ComponentLifecycle.html":{"ref":"docs/guides/advanced/ComponentLifecycle.html","tf":0.006389776357827476}}}}}}}},"m":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"a":{"docs":{},"g":{"docs":{"docs/Introduction.html":{"ref":"docs/Introduction.html","tf":0.003194888178913738},"docs/guides/basics/RouteConfiguration.html":{"ref":"docs/guides/basics/RouteConfiguration.html","tf":0.011428571428571429}}}}}}}},"h":{"docs":{},"o":{"docs":{},"m":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0011689070718877848},"docs/guides/advanced/ComponentLifecycle.html":{"ref":"docs/guides/advanced/ComponentLifecycle.html","tf":0.006389776357827476},"docs/guides/basics/Histories.html":{"ref":"docs/guides/basics/Histories.html","tf":0.005025125628140704},"docs/guides/basics/IndexRoutes.html":{"ref":"docs/guides/basics/IndexRoutes.html","tf":0.018518518518518517}}}}},"f":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{"docs/guides/basics/Histories.html":{"ref":"docs/guides/basics/Histories.html","tf":0.005025125628140704}}}}}}}},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{"docs/guides/basics/IndexRoutes.html":{"ref":"docs/guides/basics/IndexRoutes.html","tf":0.037037037037037035}}}}}},"d":{"docs":{},"a":{"docs":{},"s":{"docs":{},"h":{"docs":{},"b":{"docs":{},"o":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{"docs/guides/basics/RouteConfiguration.html":{"ref":"docs/guides/basics/RouteConfiguration.html","tf":0.008571428571428572}}}}}}}}}}}}},"d":{"docs":{},"i":{"docs":{},"d":{"docs":{},"m":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"index.html":{"ref":"index.html","tf":0.007518796992481203},"docs/Introduction.html":{"ref":"docs/Introduction.html","tf":0.009584664536741214},"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924},"docs/guides/advanced/ComponentLifecycle.html":{"ref":"docs/guides/advanced/ComponentLifecycle.html","tf":0.0670926517571885}}}}}}},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{"docs/guides/advanced/ComponentLifecycle.html":{"ref":"docs/guides/advanced/ComponentLifecycle.html","tf":0.07028753993610223}}}}}}}},"s":{"docs":{},"=":{"docs":{},"{":{"docs":{},"{":{"docs":{},"m":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.004310344827586207}}}}}}}}},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"r":{"docs":{},"s":{"docs":{"docs/guides/advanced/DynamicRouting.html":{"ref":"docs/guides/advanced/DynamicRouting.html","tf":0.008547008547008548}}}}}}},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{"docs/guides/advanced/DynamicRouting.html":{"ref":"docs/guides/advanced/DynamicRouting.html","tf":0.008547008547008548}}}}}}},"a":{"docs":{},"b":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"docs/guides/basics/Histories.html":{"ref":"docs/guides/basics/Histories.html","tf":0.007537688442211055}}}}}},"p":{"docs":{},"p":{"docs":{"docs/guides/basics/Histories.html":{"ref":"docs/guides/basics/Histories.html","tf":0.007537688442211055}}}}},"f":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{"docs/guides/basics/Histories.html":{"ref":"docs/guides/basics/Histories.html","tf":0.007537688442211055}}}}}}}},"h":{"docs":{},"o":{"docs":{},"m":{"docs":{"docs/guides/basics/Histories.html":{"ref":"docs/guides/basics/Histories.html","tf":0.007537688442211055}}}}}}},"(":{"docs":{},"组":{"docs":{},"件":{"docs":{},")":{"docs":{},"。":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"docs/Glossary.html":{"ref":"docs/Glossary.html","tf":0.001455604075691412}}}}}}}}}}},"w":{"docs":{},"i":{"docs":{},"l":{"docs":{},"l":{"docs":{},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"e":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{"docs/Troubleshooting.html":{"ref":"docs/Troubleshooting.html","tf":0.02127659574468085},"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0014611338398597311},"docs/guides/advanced/ComponentLifecycle.html":{"ref":"docs/guides/advanced/ComponentLifecycle.html","tf":0.06389776357827476}},"s":{"docs":{},"(":{"docs":{},"n":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{"docs/Troubleshooting.html":{"ref":"docs/Troubleshooting.html","tf":0.0425531914893617}}}}}}}}}}}}}}}}}}}}}}},"m":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}}}}},"u":{"docs":{},"n":{"docs":{},"m":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"docs/guides/advanced/ComponentLifecycle.html":{"ref":"docs/guides/advanced/ComponentLifecycle.html","tf":0.03514376996805112}}}}}}}}}}}}}}}}},"s":{"docs":{"docs/Introduction.html":{"ref":"docs/Introduction.html","tf":0.006389776357827476}}}},"a":{"docs":{},"t":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462}}}},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462}}}}}},"e":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462}}},"o":{"docs":{},"p":{"docs":{},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"d":{"docs":{},"i":{"docs":{},"d":{"docs":{},"m":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}}}}}}}}}}}}}}}},"n":{"docs":{},"s":{"docs":{},"t":{"docs":{"index.html":{"ref":"index.html","tf":0.03007518796992481},"docs/API.html":{"ref":"docs/API.html","tf":0.00646551724137931},"docs/Introduction.html":{"ref":"docs/Introduction.html","tf":0.04792332268370607},"docs/Troubleshooting.html":{"ref":"docs/Troubleshooting.html","tf":0.1276595744680851},"docs/guides/advanced/ConfirmingNavigation.html":{"ref":"docs/guides/advanced/ConfirmingNavigation.html","tf":0.04390243902439024},"docs/guides/advanced/DynamicRouting.html":{"ref":"docs/guides/advanced/DynamicRouting.html","tf":0.02564102564102564},"docs/guides/basics/Histories.html":{"ref":"docs/guides/basics/Histories.html","tf":0.03768844221105527},"docs/guides/basics/RouteConfiguration.html":{"ref":"docs/guides/basics/RouteConfiguration.html","tf":0.025714285714285714}}},"o":{"docs":{},"l":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462}},"e":{"docs":{},".":{"docs":{},"l":{"docs":{},"o":{"docs":{},"g":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{"docs/guides/basics/Histories.html":{"ref":"docs/guides/basics/Histories.html","tf":0.005025125628140704}}}}}}}}}}}}}}}},"n":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"h":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.003771551724137931}}},"y":{"docs":{},"(":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"o":{"docs":{},"n":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0010775862068965517}}}}}}}},"m":{"docs":{},"y":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"o":{"docs":{},"n":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0010775862068965517}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0016163793103448276}}}}},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0010775862068965517}}}},"x":{"docs":{},"t":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.004849137931034483},"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.005260081823495032},"docs/guides/advanced/ConfirmingNavigation.html":{"ref":"docs/guides/advanced/ConfirmingNavigation.html","tf":0.01951219512195122}},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0011689070718877848}}}}}}}},"i":{"docs":{},"n":{"docs":{},"u":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0008766803039158387}}}}},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0008766803039158387}}}}}},"f":{"docs":{},"i":{"docs":{},"g":{"docs":{"docs/Glossary.html":{"ref":"docs/Glossary.html","tf":0.002911208151382824}}}},"l":{"docs":{},"a":{"docs":{},"t":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462}}}}},"u":{"docs":{},"s":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462}}}}},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{},"i":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}}}}},"u":{"docs":{},"r":{"docs":{},"s":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.005387931034482759}},"e":{"docs":{},"/":{"1":{"2":{"3":{"docs":{},"/":{"docs":{},"d":{"docs":{},"a":{"docs":{},"s":{"docs":{},"h":{"docs":{},"b":{"docs":{},"o":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0016163793103448276}}}}}}}}}}},"h":{"docs":{},"o":{"docs":{},"m":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0016163793103448276}}}}}}},"docs":{}},"docs":{}},"docs":{},":":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"r":{"docs":{},"s":{"docs":{},"e":{"docs":{},"i":{"docs":{},"d":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.003771551724137931},"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924},"docs/guides/advanced/DynamicRouting.html":{"ref":"docs/guides/advanced/DynamicRouting.html","tf":0.02564102564102564}},"/":{"docs":{},"a":{"docs":{},"n":{"docs":{},"n":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462}}}}}}}},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"g":{"docs":{},"n":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"/":{"docs":{},":":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"r":{"docs":{},"s":{"docs":{},"e":{"docs":{},"i":{"docs":{},"d":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0010775862068965517}}}}}}}}}}}},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"b":{"docs":{},"a":{"docs":{},"r":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0010775862068965517}}}}}}}}},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"docs/guides/advanced/DynamicRouting.html":{"ref":"docs/guides/advanced/DynamicRouting.html","tf":0.017094017094017096}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0010775862068965517},"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0011689070718877848}},"e":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{"index.html":{"ref":"index.html","tf":0.010025062656641603},"docs/API.html":{"ref":"docs/API.html","tf":0.0016163793103448276},"docs/Introduction.html":{"ref":"docs/Introduction.html","tf":0.012779552715654952},"docs/Troubleshooting.html":{"ref":"docs/Troubleshooting.html","tf":0.02127659574468085},"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.009935710111046173},"docs/guides/advanced/ComponentLifecycle.html":{"ref":"docs/guides/advanced/ComponentLifecycle.html","tf":0.003194888178913738},"docs/guides/advanced/ConfirmingNavigation.html":{"ref":"docs/guides/advanced/ConfirmingNavigation.html","tf":0.014634146341463415},"docs/guides/basics/RouteConfiguration.html":{"ref":"docs/guides/basics/RouteConfiguration.html","tf":0.007142857142857143}}}}}}},"e":{"docs":{},"l":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0016163793103448276}},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"(":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"o":{"docs":{},"n":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.003232758620689655}}}}}}}}},"=":{"docs":{},"{":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"e":{"docs":{},"l":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0010775862068965517}}}}}}}}}}}}}}}}}}},"h":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0010775862068965517}}}}}}}},"r":{"docs":{},"e":{"docs":{},"f":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0005387931034482759},"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462}},"(":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"h":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0010775862068965517},"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0014611338398597311}}}}}}}}}}}}},"a":{"docs":{},"s":{"docs":{},"h":{"docs":{},"h":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924},"docs/guides/basics/Histories.html":{"ref":"docs/guides/basics/Histories.html","tf":0.005025125628140704}}}}}}}}}}}}},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"h":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0005387931034482759},"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462}},"(":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"h":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0010775862068965517},"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0014611338398597311}}}}}}}}}}}}}},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.003232758620689655}},"e":{"docs":{},"s":{"docs":{},"(":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0010775862068965517}}}}}}}}}}}}},"b":{"docs":{},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"h":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0014611338398597311}}}}}}}}}}}}}}}},"m":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"r":{"docs":{},"y":{"docs":{},"h":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{"docs/guides/basics/Histories.html":{"ref":"docs/guides/basics/Histories.html","tf":0.017587939698492462}}},"y":{"docs":{},"(":{"docs":{},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{"docs/guides/basics/Histories.html":{"ref":"docs/guides/basics/Histories.html","tf":0.005025125628140704}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0008766803039158387}},"b":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.012392241379310345},"docs/Glossary.html":{"ref":"docs/Glossary.html","tf":0.01455604075691412},"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0032144944476914087},"docs/guides/advanced/DynamicRouting.html":{"ref":"docs/guides/advanced/DynamicRouting.html","tf":0.07692307692307693}},"(":{"docs":{},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0010775862068965517}}}}}}},"n":{"docs":{},"u":{"docs":{},"l":{"docs":{"docs/guides/advanced/DynamicRouting.html":{"ref":"docs/guides/advanced/DynamicRouting.html","tf":0.05128205128205128}}}}}}}}}}}},"s":{"docs":{},"e":{"docs":{"docs/Introduction.html":{"ref":"docs/Introduction.html","tf":0.009584664536741214}}}}},"b":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.011853448275862068}},"(":{"docs":{},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.004310344827586207}}}}},"n":{"docs":{},"u":{"docs":{},"l":{"docs":{},"l":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.00646551724137931}}}}}}}},"u":{"docs":{},"r":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0005387931034482759},"docs/Glossary.html":{"ref":"docs/Glossary.html","tf":0.002911208151382824},"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462}},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"h":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}}}}}}}}}}},"d":{"docs":{"docs/guides/basics/Histories.html":{"ref":"docs/guides/basics/Histories.html","tf":0.005025125628140704}},"e":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{"index.html":{"ref":"index.html","tf":0.002506265664160401}}}}}},"f":{"docs":{},"a":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0016163793103448276},"docs/Introduction.html":{"ref":"docs/Introduction.html","tf":0.004792332268370607},"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0014611338398597311}},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0011689070718877848}}}}}}}}}},"i":{"docs":{},"n":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}},"i":{"docs":{},"t":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0014611338398597311}}}}}}},"c":{"docs":{},"i":{"docs":{},"d":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462}}}},"o":{"docs":{},"r":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462}}}}},"l":{"docs":{},"i":{"docs":{},"m":{"docs":{},"i":{"docs":{},"t":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462}}}}}}},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0011689070718877848}}}}},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462}}}}},"t":{"docs":{},"h":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0008766803039158387}}}}},"s":{"docs":{},"c":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462}}}}}}}},"i":{"docs":{},"v":{"docs":{"index.html":{"ref":"index.html","tf":0.040100250626566414},"docs/API.html":{"ref":"docs/API.html","tf":0.02693965517241379},"docs/Introduction.html":{"ref":"docs/Introduction.html","tf":0.019169329073482427},"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0058445353594389245},"docs/guides/basics/RouteConfiguration.html":{"ref":"docs/guides/basics/RouteConfiguration.html","tf":0.011428571428571429}},">":{"docs":{},"{":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}}},"t":{"docs":{},"h":{"docs":{},"i":{"docs":{},"s":{"docs":{},".":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}}},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"s":{"docs":{},".":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}}}}}}}}}}}}}}},"w":{"docs":{},"e":{"docs":{},"l":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{"docs/guides/basics/RouteConfiguration.html":{"ref":"docs/guides/basics/RouteConfiguration.html","tf":0.002857142857142857}}}}}}}}}},"d":{"docs":{},"n":{"docs":{},"'":{"docs":{},"t":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}}}},"f":{"docs":{},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462}}}}}},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462}},"o":{"docs":{},"r":{"docs":{},"y":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{"docs/guides/basics/RouteConfiguration.html":{"ref":"docs/guides/basics/RouteConfiguration.html","tf":0.004285714285714286}}}}}}}}}}}}}}},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462}},".":{"docs":{},"b":{"docs":{},"o":{"docs":{},"d":{"docs":{},"i":{"docs":{"index.html":{"ref":"index.html","tf":0.005012531328320802},"docs/Introduction.html":{"ref":"docs/Introduction.html","tf":0.012779552715654952},"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924},"docs/guides/basics/RouteConfiguration.html":{"ref":"docs/guides/basics/RouteConfiguration.html","tf":0.014285714285714285}}}}}},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"b":{"docs":{},"y":{"docs":{},"i":{"docs":{},"d":{"docs":{},"(":{"docs":{},"'":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{"docs/guides/basics/Histories.html":{"ref":"docs/guides/basics/Histories.html","tf":0.010050251256281407}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"u":{"docs":{},"f":{"docs":{},"f":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.003232758620689655}}}}}}},"m":{"docs":{"docs/Introduction.html":{"ref":"docs/Introduction.html","tf":0.009584664536741214},"docs/guides/basics/Histories.html":{"ref":"docs/guides/basics/Histories.html","tf":0.010050251256281407}},"/":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{"docs/guides/advanced/ServerRendering.html":{"ref":"docs/guides/advanced/ServerRendering.html","tf":0.023622047244094488}}}}}}}},"e":{"docs":{},"s":{"docs":{},"n":{"docs":{},"'":{"docs":{},"t":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462}}}}}}},"n":{"docs":{},"'":{"docs":{},"t":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0008766803039158387}}}}},"w":{"docs":{},"n":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0032144944476914087}}}}},"a":{"docs":{},"s":{"docs":{},"h":{"docs":{},"b":{"docs":{},"o":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0010775862068965517},"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924},"docs/guides/basics/RouteConfiguration.html":{"ref":"docs/guides/basics/RouteConfiguration.html","tf":0.027142857142857142}},"p":{"docs":{},"i":{"docs":{},"c":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{},"e":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0010775862068965517}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"a":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0023378141437755697},"docs/guides/advanced/ComponentLifecycle.html":{"ref":"docs/guides/advanced/ComponentLifecycle.html","tf":0.006389776357827476}},".":{"docs":{},"i":{"docs":{},"n":{"docs":{},"v":{"docs":{},"o":{"docs":{},"i":{"docs":{},"c":{"docs":{"docs/guides/advanced/ComponentLifecycle.html":{"ref":"docs/guides/advanced/ComponentLifecycle.html","tf":0.006389776357827476}}}}}}}}}}}},"r":{"docs":{},"a":{"docs":{},"f":{"docs":{},"t":{"docs":{"docs/Introduction.html":{"ref":"docs/Introduction.html","tf":0.003194888178913738}}}}}},"y":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0008766803039158387}}}}}}},"e":{"docs":{},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{"index.html":{"ref":"index.html","tf":0.002506265664160401}},"'":{"docs":{"index.html":{"ref":"index.html","tf":0.002506265664160401}}}}},"r":{"docs":{},"a":{"docs":{},"c":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462}}}}}}},"s":{"2":{"0":{"1":{"5":{"docs":{"index.html":{"ref":"index.html","tf":0.002506265664160401}}},"docs":{}},"docs":{}},"docs":{}},"6":{"docs":{"index.html":{"ref":"index.html","tf":0.015037593984962405},"docs/API.html":{"ref":"docs/API.html","tf":0.0010775862068965517},"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0023378141437755697},"docs/guides/advanced/ConfirmingNavigation.html":{"ref":"docs/guides/advanced/ConfirmingNavigation.html","tf":0.004878048780487805},"docs/guides/basics/Histories.html":{"ref":"docs/guides/basics/Histories.html","tf":0.007537688442211055}},"/":{"docs":{},"e":{"docs":{},"s":{"2":{"0":{"1":{"5":{"docs":{"docs/Introduction.html":{"ref":"docs/Introduction.html","tf":0.003194888178913738}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}}},"docs":{}},"t":{"docs":{},"c":{"docs":{"index.html":{"ref":"index.html","tf":0.007518796992481203},"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0029222676797194622}}}},".":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"d":{"docs":{},"e":{"docs":{},"f":{"docs":{},"a":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0010775862068965517}}}}}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"p":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"a":{"docs":{},"g":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0010775862068965517}}}}}}}}}}}}},"l":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0058445353594389245},"docs/guides/advanced/NavigatingOutsideOfComponents.html":{"ref":"docs/guides/advanced/NavigatingOutsideOfComponents.html","tf":0.027777777777777776}},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0010775862068965517},"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}}}}}},"n":{"docs":{},"t":{"docs":{},"r":{"docs":{},"y":{"docs":{},"<":{"docs":{},"/":{"docs":{},"d":{"docs":{},"i":{"docs":{},"v":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0010775862068965517}}}}}}}},"i":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462}}}},"e":{"docs":{},"r":{"docs":{"docs/Glossary.html":{"ref":"docs/Glossary.html","tf":0.005822416302765648}},"h":{"docs":{},"o":{"docs":{},"o":{"docs":{},"k":{"docs":{"docs/Glossary.html":{"ref":"docs/Glossary.html","tf":0.011644832605531296}}}}}}}}},"s":{"docs":{},"u":{"docs":{},"r":{"docs":{"docs/guides/advanced/DynamicRouting.html":{"ref":"docs/guides/advanced/DynamicRouting.html","tf":0.02564102564102564}}}}}},"r":{"docs":{},"r":{"docs":{"docs/Introduction.html":{"ref":"docs/Introduction.html","tf":0.003194888178913738},"docs/guides/advanced/ComponentLifecycle.html":{"ref":"docs/guides/advanced/ComponentLifecycle.html","tf":0.006389776357827476}},"o":{"docs":{},"r":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.004310344827586207},"docs/Glossary.html":{"ref":"docs/Glossary.html","tf":0.005822416302765648},"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462},"docs/guides/advanced/ServerRendering.html":{"ref":"docs/guides/advanced/ServerRendering.html","tf":0.031496062992125984}},".":{"docs":{},"m":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"a":{"docs":{},"g":{"docs":{"docs/guides/advanced/ServerRendering.html":{"ref":"docs/guides/advanced/ServerRendering.html","tf":0.015748031496062992}}}}}}}}}}}}},"x":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0016163793103448276},"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462}},"e":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"#":{"docs":{},"/":{"docs":{},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"/":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"h":{"docs":{"docs/guides/basics/Histories.html":{"ref":"docs/guides/basics/Histories.html","tf":0.005025125628140704}}}}}}}}}}}}},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"/":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"h":{"docs":{"docs/guides/basics/Histories.html":{"ref":"docs/guides/basics/Histories.html","tf":0.002512562814070352}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"t":{"docs":{},"l":{"docs":{},"i":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462}}}}}}},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0016163793103448276},"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462}}}}},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"i":{"docs":{},"t":{"docs":{},"l":{"docs":{},"i":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"docs/guides/basics/Histories.html":{"ref":"docs/guides/basics/Histories.html","tf":0.017587939698492462}}}}}}},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.01293103448275862},"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0011689070718877848}}}}},"r":{"docs":{},"a":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0008766803039158387}},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"=":{"docs":{},"{":{"docs":{},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{},"h":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0008766803039158387}}}}}}}}}}}}}}}}}},"f":{"docs":{},"f":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}}}}}},"f":{"docs":{"docs/guides/basics/Histories.html":{"ref":"docs/guides/basics/Histories.html","tf":0.005025125628140704}},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{"index.html":{"ref":"index.html","tf":0.002506265664160401}}}}}},"c":{"docs":{},"i":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0017533606078316774}}}}},"l":{"docs":{},"s":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.003232758620689655},"docs/Glossary.html":{"ref":"docs/Glossary.html","tf":0.004366812227074236},"docs/Troubleshooting.html":{"ref":"docs/Troubleshooting.html","tf":0.06382978723404255},"docs/guides/advanced/ConfirmingNavigation.html":{"ref":"docs/guides/advanced/ConfirmingNavigation.html","tf":0.01951219512195122}}}},"c":{"docs":{},"e":{"docs":{},"b":{"docs":{},"o":{"docs":{},"o":{"docs":{},"k":{"docs":{"docs/guides/advanced/DynamicRouting.html":{"ref":"docs/guides/advanced/DynamicRouting.html","tf":0.017094017094017096}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0008766803039158387}},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"b":{"docs":{},"y":{"docs":{},"i":{"docs":{},"d":{"docs":{"index.html":{"ref":"index.html","tf":0.002506265664160401}},"(":{"docs":{},"t":{"docs":{},"h":{"docs":{},"i":{"docs":{},"s":{"docs":{},".":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"s":{"docs":{},".":{"docs":{},"p":{"docs":{},"a":{"docs":{},"r":{"docs":{},"a":{"docs":{},"m":{"docs":{},"s":{"docs":{},".":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{},"d":{"docs":{"index.html":{"ref":"index.html","tf":0.005012531328320802}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"e":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462},"docs/guides/advanced/NavigatingOutsideOfComponents.html":{"ref":"docs/guides/advanced/NavigatingOutsideOfComponents.html","tf":0.08333333333333333},"docs/guides/basics/RouteMatching.html":{"ref":"docs/guides/basics/RouteMatching.html","tf":0.015384615384615385}},"/":{"docs":{},":":{"docs":{},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462}},"e":{"docs":{},".":{"docs":{},"?":{"docs":{},":":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462}}}}}}}}}}}}}}}}}},"s":{"docs":{},"/":{"docs":{},"h":{"docs":{},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{},".":{"docs":{},"j":{"docs":{},"p":{"docs":{},"g":{"docs":{"docs/guides/basics/RouteMatching.html":{"ref":"docs/guides/basics/RouteMatching.html","tf":0.046153846153846156}}}}}}}}}}},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"h":{"docs":{},"/":{"docs":{},"t":{"docs":{},"o":{"docs":{},"/":{"docs":{},"h":{"docs":{},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{},".":{"docs":{},"j":{"docs":{},"p":{"docs":{},"g":{"docs":{"docs/guides/basics/RouteMatching.html":{"ref":"docs/guides/basics/RouteMatching.html","tf":0.046153846153846156}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462}}}}},"o":{"docs":{},"o":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0010775862068965517},"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.005552308591466978}},"'":{"docs":{},")":{"docs":{},"}":{"docs":{},">":{"docs":{},"g":{"docs":{},"o":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0010775862068965517}}}}}}}},"<":{"docs":{},"/":{"docs":{},"d":{"docs":{},"i":{"docs":{},"v":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0010775862068965517}}}}}}},"?":{"docs":{},"b":{"docs":{},"a":{"docs":{},"r":{"docs":{},"=":{"docs":{},"b":{"docs":{},"a":{"docs":{},"z":{"docs":{"docs/Introduction.html":{"ref":"docs/Introduction.html","tf":0.003194888178913738}}}}}}}}}},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}}}}}}}}}}},"=":{"docs":{},"\"":{"docs":{},"b":{"docs":{},"a":{"docs":{},"r":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}}}}},"}":{"docs":{},"<":{"docs":{},"/":{"docs":{},"d":{"docs":{},"i":{"docs":{},"v":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}}}}}}},"l":{"docs":{},"k":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462}}}},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{"docs/guides/advanced/ServerRendering.html":{"ref":"docs/guides/advanced/ServerRendering.html","tf":0.023622047244094488}}}}}},"r":{"docs":{},"o":{"docs":{},"m":{"docs":{},"=":{"docs":{},"\"":{"docs":{},"h":{"docs":{},"o":{"docs":{},"m":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0010775862068965517}}}}},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{},"e":{"docs":{},"/":{"docs":{},":":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{},"d":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0010775862068965517}}}}}}}}}}}}}}}}},"/":{"docs":{},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"/":{"docs":{},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"/":{"docs":{},":":{"docs":{},"i":{"docs":{},"d":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}}}}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{"docs/guides/basics/RouteMatching.html":{"ref":"docs/guides/basics/RouteMatching.html","tf":0.03076923076923077}}}}}},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"/":{"docs":{},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"/":{"docs":{},":":{"docs":{},"i":{"docs":{},"d":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}}}}}}}}}}}}}},"m":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"s":{"docs":{},"/":{"docs":{},":":{"docs":{},"i":{"docs":{},"d":{"docs":{"docs/guides/basics/RouteConfiguration.html":{"ref":"docs/guides/basics/RouteConfiguration.html","tf":0.002857142857142857}}}}}}}}}}}}}}}},"d":{"docs":{},"a":{"docs":{},"s":{"docs":{},"h":{"docs":{},"b":{"docs":{},"o":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0010775862068965517}}}}}}}}}}}},"n":{"docs":{},"t":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462}}}}},"e":{"docs":{},"e":{"docs":{},"n":{"docs":{},"o":{"docs":{},"d":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462}}}}}}},"u":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462}}}}}}}}},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.004849137931034483},"docs/Glossary.html":{"ref":"docs/Glossary.html","tf":0.011644832605531296},"docs/Introduction.html":{"ref":"docs/Introduction.html","tf":0.004792332268370607},"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.030391583869082407},"docs/guides/advanced/DynamicRouting.html":{"ref":"docs/guides/advanced/DynamicRouting.html","tf":0.07692307692307693},"docs/guides/basics/Histories.html":{"ref":"docs/guides/basics/Histories.html","tf":0.007537688442211055},"docs/guides/basics/RouteConfiguration.html":{"ref":"docs/guides/basics/RouteConfiguration.html","tf":0.004285714285714286}}}}}}},"d":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462}}}}}}}}}},"e":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"docs/guides/advanced/ComponentLifecycle.html":{"ref":"docs/guides/advanced/ComponentLifecycle.html","tf":0.003194888178913738}},"m":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"a":{"docs":{},"g":{"docs":{"docs/Introduction.html":{"ref":"docs/Introduction.html","tf":0.001597444089456869}},"e":{"docs":{},"(":{"docs":{},"i":{"docs":{},"d":{"docs":{"docs/Introduction.html":{"ref":"docs/Introduction.html","tf":0.003194888178913738}}}}}}}}}}}},"(":{"docs":{},"u":{"docs":{},"r":{"docs":{},"l":{"docs":{"docs/guides/advanced/ComponentLifecycle.html":{"ref":"docs/guides/advanced/ComponentLifecycle.html","tf":0.006389776357827476}}}}}},"i":{"docs":{},"n":{"docs":{},"v":{"docs":{},"o":{"docs":{},"i":{"docs":{},"c":{"docs":{"docs/guides/advanced/ComponentLifecycle.html":{"ref":"docs/guides/advanced/ComponentLifecycle.html","tf":0.012779552715654952}}}}}}}}}}},"a":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924},"docs/guides/basics/Histories.html":{"ref":"docs/guides/basics/Histories.html","tf":0.007537688442211055}}}}}}},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"t":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462}}}}},"u":{"docs":{},"x":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0008766803039158387}}}}},"n":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0017533606078316774}},"(":{"docs":{},"n":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}}}}}}}}}}},"g":{"docs":{},"i":{"docs":{},"t":{"docs":{},"b":{"docs":{},"o":{"docs":{},"o":{"docs":{},"k":{"docs":{"index.html":{"ref":"index.html","tf":0.002506265664160401}}}}}}},"v":{"docs":{},"e":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462}}}}},"u":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},".":{"docs":{},"g":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"u":{"docs":{},"b":{"docs":{},".":{"docs":{},"i":{"docs":{},"o":{"docs":{},"/":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"index.html":{"ref":"index.html","tf":0.005012531328320802}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"t":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462}},"c":{"docs":{},"h":{"docs":{},"i":{"docs":{},"l":{"docs":{},"d":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0026939655172413795},"docs/guides/advanced/DynamicRouting.html":{"ref":"docs/guides/advanced/DynamicRouting.html","tf":0.02564102564102564}},"e":{"docs":{},"s":{"docs":{},"(":{"docs":{},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.003232758620689655},"docs/guides/advanced/DynamicRouting.html":{"ref":"docs/guides/advanced/DynamicRouting.html","tf":0.017094017094017096}}}}}},",":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"docs/guides/advanced/DynamicRouting.html":{"ref":"docs/guides/advanced/DynamicRouting.html","tf":0.008547008547008548}}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"o":{"docs":{},"n":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0010775862068965517},"docs/guides/advanced/DynamicRouting.html":{"ref":"docs/guides/advanced/DynamicRouting.html","tf":0.03418803418803419}},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"(":{"docs":{},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0010775862068965517}}}}}},"=":{"docs":{},"{":{"docs":{},"(":{"docs":{},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0021551724137931034}}}}}}}},"s":{"docs":{},"(":{"docs":{},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0010775862068965517},"docs/guides/advanced/DynamicRouting.html":{"ref":"docs/guides/advanced/DynamicRouting.html","tf":0.017094017094017096}}}}}}}}}}}}}}},"u":{"docs":{},"r":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"p":{"docs":{},"a":{"docs":{},"r":{"docs":{},"a":{"docs":{},"m":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}}},"t":{"docs":{},"h":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}}}},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0010775862068965517},"docs/guides/advanced/DynamicRouting.html":{"ref":"docs/guides/advanced/DynamicRouting.html","tf":0.02564102564102564}},"e":{"docs":{},"(":{"docs":{},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0021551724137931034},"docs/guides/advanced/DynamicRouting.html":{"ref":"docs/guides/advanced/DynamicRouting.html","tf":0.017094017094017096}}}}}}}}}}}}}},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{},"t":{"docs":{"docs/Introduction.html":{"ref":"docs/Introduction.html","tf":0.004792332268370607},"docs/Troubleshooting.html":{"ref":"docs/Troubleshooting.html","tf":0.06382978723404255},"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0017533606078316774},"docs/guides/advanced/ComponentLifecycle.html":{"ref":"docs/guides/advanced/ComponentLifecycle.html","tf":0.006389776357827476}}}}}}}}}}},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"p":{"docs":{},"a":{"docs":{},"r":{"docs":{},"a":{"docs":{},"m":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0014611338398597311}}}}}}},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462}}}}}}},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462}}}}}}}}}}}},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"l":{"docs":{},"e":{"docs":{},"r":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0008766803039158387}}}}}}}}}}}},"p":{"docs":{},"a":{"docs":{},"r":{"docs":{},"a":{"docs":{},"m":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.004091174751607247}}}}},"t":{"docs":{},"h":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.004383401519579193}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0035067212156633548}}}}}}}}},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.004091174751607247}}}}}}},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0020455873758036236}}}}}},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0011689070718877848}}}}}},"u":{"docs":{},"s":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}},"e":{"docs":{},"r":{"docs":{},"(":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"s":{"docs":{},".":{"docs":{},"p":{"docs":{},"a":{"docs":{},"r":{"docs":{},"a":{"docs":{},"m":{"docs":{},"s":{"docs":{},".":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{},"d":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"h":{"docs":{},"i":{"docs":{},"s":{"docs":{},".":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"s":{"docs":{},".":{"docs":{},"p":{"docs":{},"a":{"docs":{},"r":{"docs":{},"a":{"docs":{},"m":{"docs":{},"s":{"docs":{},".":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{},"d":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"b":{"docs":{},"y":{"docs":{},"i":{"docs":{},"d":{"docs":{"docs/guides/basics/Histories.html":{"ref":"docs/guides/basics/Histories.html","tf":0.005025125628140704}}}}}}}}}}}}}}},"o":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0005387931034482759},"docs/Glossary.html":{"ref":"docs/Glossary.html","tf":0.001455604075691412},"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0020455873758036236}},"(":{"docs":{},"n":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0010775862068965517},"docs/Glossary.html":{"ref":"docs/Glossary.html","tf":0.002911208151382824},"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0029222676797194622}}}},"b":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0021551724137931034},"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.004675628287551139}}}}}},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"w":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0016163793103448276},"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0035067212156633548}}}}}}}}},"n":{"docs":{},"e":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0008766803039158387}}}}},"r":{"docs":{},"a":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0021551724137931034}}}}}}}}},"b":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0008766803039158387}}}},"o":{"docs":{},"u":{"docs":{},"p":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.009159482758620689}},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"b":{"docs":{},"a":{"docs":{},"r":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.003771551724137931}}}}}}}}}}},"n":{"docs":{},"d":{"docs":{},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"k":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462}}}}}}}}}}}},"h":{"1":{"docs":{},">":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"<":{"docs":{},"/":{"docs":{},"h":{"1":{"docs":{"index.html":{"ref":"index.html","tf":0.005012531328320802}}},"docs":{}}}}}}}}},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"<":{"docs":{},"/":{"docs":{},"h":{"1":{"docs":{"docs/Introduction.html":{"ref":"docs/Introduction.html","tf":0.006389776357827476},"docs/guides/basics/RouteConfiguration.html":{"ref":"docs/guides/basics/RouteConfiguration.html","tf":0.002857142857142857}}},"docs":{}}}}}}}}},"2":{"docs":{},">":{"docs":{},"{":{"docs":{},"t":{"docs":{},"h":{"docs":{},"i":{"docs":{},"s":{"docs":{},".":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},".":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"}":{"docs":{},"<":{"docs":{},"/":{"docs":{},"h":{"2":{"docs":{"index.html":{"ref":"index.html","tf":0.005012531328320802}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"b":{"docs":{},"o":{"docs":{},"x":{"docs":{},"<":{"docs":{},"/":{"docs":{},"h":{"2":{"docs":{"docs/Introduction.html":{"ref":"docs/Introduction.html","tf":0.003194888178913738},"docs/guides/basics/RouteConfiguration.html":{"ref":"docs/guides/basics/RouteConfiguration.html","tf":0.002857142857142857}}},"docs":{}}}}}}}}}}},"3":{"docs":{},">":{"docs":{},"m":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"a":{"docs":{},"g":{"docs":{"docs/guides/basics/RouteConfiguration.html":{"ref":"docs/guides/basics/RouteConfiguration.html","tf":0.002857142857142857}},"e":{"docs":{},"<":{"docs":{},"/":{"docs":{},"h":{"3":{"docs":{"docs/Introduction.html":{"ref":"docs/Introduction.html","tf":0.003194888178913738}}},"docs":{}}}}}}}}}}},"a":{"docs":{},"b":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{},"<":{"docs":{},"/":{"docs":{},"h":{"3":{"docs":{"docs/guides/basics/RouteConfiguration.html":{"ref":"docs/guides/basics/RouteConfiguration.html","tf":0.002857142857142857}}},"docs":{}}}}}}}}}}},"docs":{},"t":{"docs":{},"t":{"docs":{},"p":{"docs":{},":":{"docs":{},"/":{"docs":{},"/":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"index.html":{"ref":"index.html","tf":0.005012531328320802}}}}}}},"e":{"docs":{},"x":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"/":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"h":{"docs":{},"?":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"=":{"docs":{},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{"docs/Glossary.html":{"ref":"docs/Glossary.html","tf":0.005822416302765648}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},":":{"docs":{},"/":{"docs":{},"/":{"docs":{},"g":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"u":{"docs":{},"b":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"r":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"t":{"docs":{},"/":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"index.html":{"ref":"index.html","tf":0.005012531328320802},"docs/API.html":{"ref":"docs/API.html","tf":0.0016163793103448276}}}}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"n":{"docs":{},"p":{"docs":{},"k":{"docs":{},"g":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"index.html":{"ref":"index.html","tf":0.002506265664160401}}}}}}}}}}}}}}}}},"t":{"docs":{},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"s":{"docs":{},"o":{"docs":{},"p":{"docs":{},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"o":{"docs":{},"/":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"u":{"docs":{},"s":{"docs":{},"/":{"6":{"1":{"0":{"8":{"6":{"7":{"6":{"6":{"2":{"7":{"9":{"7":{"8":{"0":{"7":{"6":{"1":{"7":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0010775862068965517}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"m":{"docs":{},"l":{"5":{"docs":{"docs/Glossary.html":{"ref":"docs/Glossary.html","tf":0.001455604075691412}}},"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0020455873758036236},"docs/guides/basics/Histories.html":{"ref":"docs/guides/basics/Histories.html","tf":0.002512562814070352}}}},"a":{"docs":{},"c":{"docs":{},"c":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"docs/guides/basics/Histories.html":{"ref":"docs/guides/basics/Histories.html","tf":0.002512562814070352}}}}}}}}},"a":{"docs":{},"s":{"docs":{},"h":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.004310344827586207},"docs/Introduction.html":{"ref":"docs/Introduction.html","tf":0.001597444089456869},"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0014611338398597311},"docs/guides/basics/Histories.html":{"ref":"docs/guides/basics/Histories.html","tf":0.01507537688442211}},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{"docs/Introduction.html":{"ref":"docs/Introduction.html","tf":0.001597444089456869}}}}}}},"h":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{"docs/guides/basics/Histories.html":{"ref":"docs/guides/basics/Histories.html","tf":0.01507537688442211}}}}}}}}}}},"n":{"docs":{},"d":{"docs":{},"l":{"docs":{},"e":{"docs":{},"r":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.010520163646990065}},"=":{"docs":{},"\"":{"docs":{},"a":{"docs":{},"b":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0011689070718877848}}}}}}}},"{":{"docs":{},"a":{"docs":{},"b":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0011689070718877848}}}}}},"p":{"docs":{},"p":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0035067212156633548}}}}},"d":{"docs":{},"a":{"docs":{},"s":{"docs":{},"h":{"docs":{},"b":{"docs":{},"o":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0011689070718877848}}}}}}}}}}},"h":{"docs":{},"o":{"docs":{},"m":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}}},"m":{"docs":{},"a":{"docs":{},"k":{"docs":{},"e":{"docs":{},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{},"h":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"u":{"docs":{},"s":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"o":{"docs":{},"m":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}}}}}}},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{},"h":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0011689070718877848}}}}}}}},"u":{"docs":{},"s":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0011689070718877848}}}}}}}}}}}},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.028556034482758622},"docs/Glossary.html":{"ref":"docs/Glossary.html","tf":0.01601164483260553},"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.005260081823495032},"docs/guides/basics/Histories.html":{"ref":"docs/guides/basics/Histories.html","tf":10.055276381909549},"docs/guides/basics/index.html":{"ref":"docs/guides/basics/index.html","tf":0.3333333333333333}}},"y":{"docs":{},"=":{"docs":{},"{":{"docs":{},"t":{"docs":{},"h":{"docs":{},"i":{"docs":{},"s":{"docs":{},".":{"docs":{},"h":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0010775862068965517}}}}}}}}}}}}}},"h":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"y":{"docs":{},"}":{"docs":{},">":{"docs":{},"{":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"}":{"docs":{},"<":{"docs":{},"/":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}}}}}}}}}}}}}}}}}}}}}}},"b":{"docs":{},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"h":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{"docs/guides/advanced/NavigatingOutsideOfComponents.html":{"ref":"docs/guides/advanced/NavigatingOutsideOfComponents.html","tf":0.027777777777777776},"docs/guides/basics/Histories.html":{"ref":"docs/guides/basics/Histories.html","tf":0.010050251256281407}}}}}}}}}}}}}}}}}},".":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{"docs/Glossary.html":{"ref":"docs/Glossary.html","tf":0.004366812227074236}}}}}}}},"m":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"docs/Glossary.html":{"ref":"docs/Glossary.html","tf":0.004366812227074236}}}}}}},"i":{"docs":{},"s":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"(":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"h":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0029222676797194622}}}}}}}}}}}}}}}}}}},"/":{"docs":{},"l":{"docs":{},"i":{"docs":{},"b":{"docs":{},"/":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"b":{"docs":{},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"h":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0008766803039158387}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"e":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462}}}},"e":{"docs":{},"r":{"docs":{},"a":{"docs":{},"r":{"docs":{},"c":{"docs":{},"h":{"docs":{},"i":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0017533606078316774}}}}}}}}}},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0005387931034482759},"docs/Introduction.html":{"ref":"docs/Introduction.html","tf":0.006389776357827476},"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0029222676797194622},"docs/guides/advanced/ComponentLifecycle.html":{"ref":"docs/guides/advanced/ComponentLifecycle.html","tf":0.06070287539936102},"docs/guides/advanced/ConfirmingNavigation.html":{"ref":"docs/guides/advanced/ConfirmingNavigation.html","tf":0.06341463414634146},"docs/guides/basics/Histories.html":{"ref":"docs/guides/basics/Histories.html","tf":0.005025125628140704},"docs/guides/basics/IndexRoutes.html":{"ref":"docs/guides/basics/IndexRoutes.html","tf":0.1111111111111111}}}},"o":{"docs":{},"k":{"docs":{"docs/Glossary.html":{"ref":"docs/Glossary.html","tf":0.01455604075691412},"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0014611338398597311},"docs/guides/advanced/ComponentLifecycle.html":{"ref":"docs/guides/advanced/ComponentLifecycle.html","tf":0.003194888178913738},"docs/guides/basics/IndexRoutes.html":{"ref":"docs/guides/basics/IndexRoutes.html","tf":0.009259259259259259},"docs/guides/basics/RouteConfiguration.html":{"ref":"docs/guides/basics/RouteConfiguration.html","tf":0.012857142857142857}}},"d":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462}}}}},"r":{"docs":{},"e":{"docs":{},"f":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0005387931034482759}},"=":{"docs":{},"\"":{"docs":{},"#":{"docs":{},"/":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"/":{"1":{"2":{"3":{"docs":{},"\"":{"docs":{},">":{"docs":{},"m":{"docs":{},"i":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"e":{"docs":{},"l":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0010775862068965517}}}}}}}}}}}}}}},"docs":{}},"docs":{}},"docs":{}}}}}}},"a":{"docs":{},"b":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{},"\"":{"docs":{},">":{"docs":{},"a":{"docs":{},"b":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"l":{"docs":{},"i":{"docs":{"docs/Introduction.html":{"ref":"docs/Introduction.html","tf":0.003194888178913738}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"b":{"docs":{},"o":{"docs":{},"x":{"docs":{},"\"":{"docs":{},">":{"docs":{},"i":{"docs":{},"n":{"docs":{},"b":{"docs":{},"o":{"docs":{},"x":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"l":{"docs":{},"i":{"docs":{"docs/Introduction.html":{"ref":"docs/Introduction.html","tf":0.003194888178913738}}}}}}}}}}}}}}}}}}}}}}}},"/":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"/":{"1":{"2":{"3":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0010775862068965517}}},"docs":{}},"docs":{}},"docs":{}}}}}}}},"f":{"docs":{},"o":{"docs":{},"o":{"docs":{},"\"":{"docs":{},">":{"docs":{},"f":{"docs":{},"o":{"docs":{},"o":{"docs":{},"<":{"docs":{},"/":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0010775862068965517}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"l":{"docs":{},"p":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462}}},"l":{"docs":{},"o":{"docs":{"docs/guides/basics/RouteMatching.html":{"ref":"docs/guides/basics/RouteMatching.html","tf":0.046153846153846156}},"(":{"docs":{},"/":{"docs":{},":":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"docs/guides/basics/RouteMatching.html":{"ref":"docs/guides/basics/RouteMatching.html","tf":0.015384615384615385}}}}}}}},"/":{"docs":{},":":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"docs/guides/basics/RouteMatching.html":{"ref":"docs/guides/basics/RouteMatching.html","tf":0.015384615384615385}}}}}},"m":{"docs":{},"i":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"e":{"docs":{},"l":{"docs":{"docs/guides/basics/RouteMatching.html":{"ref":"docs/guides/basics/RouteMatching.html","tf":0.09230769230769231}}}}}}}}},"r":{"docs":{},"y":{"docs":{},"a":{"docs":{},"n":{"docs":{"docs/guides/basics/RouteMatching.html":{"ref":"docs/guides/basics/RouteMatching.html","tf":0.09230769230769231}}}}}}}}}},"r":{"docs":{},"e":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0011689070718877848}},"'":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0008766803039158387}}}}}},"u":{"docs":{},"g":{"docs":{},"e":{"docs":{"docs/guides/advanced/DynamicRouting.html":{"ref":"docs/guides/advanced/DynamicRouting.html","tf":0.017094017094017096}}}}}},"i":{"docs":{},"m":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"index.html":{"ref":"index.html","tf":0.022556390977443608},"docs/API.html":{"ref":"docs/API.html","tf":0.00646551724137931},"docs/Introduction.html":{"ref":"docs/Introduction.html","tf":0.023961661341853034},"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0011689070718877848},"docs/guides/advanced/ConfirmingNavigation.html":{"ref":"docs/guides/advanced/ConfirmingNavigation.html","tf":0.02926829268292683},"docs/guides/advanced/NavigatingOutsideOfComponents.html":{"ref":"docs/guides/advanced/NavigatingOutsideOfComponents.html","tf":0.125},"docs/guides/advanced/ServerRendering.html":{"ref":"docs/guides/advanced/ServerRendering.html","tf":0.07086614173228346},"docs/guides/basics/Histories.html":{"ref":"docs/guides/basics/Histories.html","tf":0.06030150753768844},"docs/guides/basics/RouteConfiguration.html":{"ref":"docs/guides/basics/RouteConfiguration.html","tf":0.017142857142857144}}}}},"l":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}}}}}}},"i":{"docs":{},"t":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462}}}}},"n":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{"index.html":{"ref":"index.html","tf":0.005012531328320802}}},"n":{"docs":{},"c":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0020455873758036236}}}}},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0014611338398597311}}}}}}},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"c":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462}},"t":{"docs":{"index.html":{"ref":"index.html","tf":10}}}}}}}},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}}}},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.005926724137931034},"docs/guides/basics/IndexRoutes.html":{"ref":"docs/guides/basics/IndexRoutes.html","tf":0.009259259259259259},"docs/guides/basics/RouteConfiguration.html":{"ref":"docs/guides/basics/RouteConfiguration.html","tf":0.004285714285714286}},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{},"k":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.004310344827586207},"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0011689070718877848},"docs/guides/basics/IndexRoutes.html":{"ref":"docs/guides/basics/IndexRoutes.html","tf":5.027777777777778},"docs/guides/basics/index.html":{"ref":"docs/guides/basics/index.html","tf":0.3333333333333333}}}}}},"o":{"docs":{},"n":{"docs":{},"l":{"docs":{},"i":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.003771551724137931}}},"y":{"docs":{},"=":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0010775862068965517}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.003232758620689655}}}}}}}}},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.007543103448275862},"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924},"docs/guides/advanced/ComponentLifecycle.html":{"ref":"docs/guides/advanced/ComponentLifecycle.html","tf":0.006389776357827476},"docs/guides/basics/Histories.html":{"ref":"docs/guides/basics/Histories.html","tf":0.010050251256281407},"docs/guides/basics/IndexRoutes.html":{"ref":"docs/guides/basics/IndexRoutes.html","tf":5.074074074074074},"docs/guides/basics/index.html":{"ref":"docs/guides/basics/index.html","tf":0.3333333333333333},"docs/guides/basics/RouteConfiguration.html":{"ref":"docs/guides/basics/RouteConfiguration.html","tf":0.018571428571428572}}}}}},".":{"docs":{},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{"docs/guides/basics/Histories.html":{"ref":"docs/guides/basics/Histories.html","tf":0.03015075376884422},"docs/guides/basics/RouteConfiguration.html":{"ref":"docs/guides/basics/RouteConfiguration.html","tf":0.002857142857142857}}}}}}},"\\":{"docs":{},".":{"docs":{},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{"docs/guides/basics/Histories.html":{"ref":"docs/guides/basics/Histories.html","tf":0.005025125628140704}}}}}}}}}}},"b":{"docs":{},"o":{"docs":{},"x":{"docs":{"docs/Introduction.html":{"ref":"docs/Introduction.html","tf":0.07028753993610223},"docs/guides/basics/RouteConfiguration.html":{"ref":"docs/guides/basics/RouteConfiguration.html","tf":0.09571428571428571}},"/":{"docs":{},"m":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"s":{"docs":{},"/":{"1":{"2":{"3":{"4":{"docs":{"docs/Introduction.html":{"ref":"docs/Introduction.html","tf":0.003194888178913738}}},"docs":{}},"docs":{}},"docs":{}},"5":{"docs":{"docs/guides/basics/RouteConfiguration.html":{"ref":"docs/guides/basics/RouteConfiguration.html","tf":0.005714285714285714}}},"docs":{},":":{"docs":{},"i":{"docs":{},"d":{"docs":{"docs/Introduction.html":{"ref":"docs/Introduction.html","tf":0.004792332268370607},"docs/guides/basics/RouteConfiguration.html":{"ref":"docs/guides/basics/RouteConfiguration.html","tf":0.02142857142857143}}}}},"j":{"docs":{},"k":{"docs":{},"e":{"docs":{},"i":{"3":{"docs":{},"c":{"3":{"2":{"docs":{"docs/Introduction.html":{"ref":"docs/Introduction.html","tf":0.003194888178913738}}},"docs":{}},"docs":{}}},"docs":{}}}}}}}}}}}}}}}}}},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"d":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462}}},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462}}}}}}}}},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462}}}}}},"v":{"docs":{},"o":{"docs":{},"i":{"docs":{},"c":{"docs":{"docs/guides/advanced/ComponentLifecycle.html":{"ref":"docs/guides/advanced/ComponentLifecycle.html","tf":0.08626198083067092}},"e":{"docs":{},"/":{"1":{"2":{"3":{"docs":{"docs/guides/advanced/ComponentLifecycle.html":{"ref":"docs/guides/advanced/ComponentLifecycle.html","tf":0.009584664536741214}}},"docs":{}},"docs":{}},"7":{"8":{"9":{"docs":{"docs/guides/advanced/ComponentLifecycle.html":{"ref":"docs/guides/advanced/ComponentLifecycle.html","tf":0.012779552715654952}}},"docs":{}},"docs":{}},"docs":{}},"=":{"docs":{},"{":{"docs":{},"t":{"docs":{},"h":{"docs":{},"i":{"docs":{},"s":{"docs":{},".":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},".":{"docs":{},"i":{"docs":{},"n":{"docs":{},"v":{"docs":{},"o":{"docs":{},"i":{"docs":{},"c":{"docs":{"docs/guides/advanced/ComponentLifecycle.html":{"ref":"docs/guides/advanced/ComponentLifecycle.html","tf":0.006389776357827476}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"/":{"docs":{},":":{"docs":{},"i":{"docs":{},"n":{"docs":{},"v":{"docs":{},"o":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},"i":{"docs":{},"d":{"docs":{"docs/guides/advanced/ComponentLifecycle.html":{"ref":"docs/guides/advanced/ComponentLifecycle.html","tf":0.003194888178913738}}}}}}}}}}}}}},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{"docs/guides/advanced/ComponentLifecycle.html":{"ref":"docs/guides/advanced/ComponentLifecycle.html","tf":0.006389776357827476}}}}}}}}}}}},"s":{"docs":{},"s":{"docs":{},"u":{"docs":{"index.html":{"ref":"index.html","tf":0.002506265664160401},"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0008766803039158387}}}},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.003232758620689655},"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.004383401519579193}},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"(":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"h":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0021551724137931034}}}}}}}}},"t":{"docs":{},"o":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0029222676797194622}}}}}}}}}}}},"d":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0005387931034482759},"docs/Introduction.html":{"ref":"docs/Introduction.html","tf":0.009584664536741214},"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0029222676797194622}}},"t":{"docs":{},"'":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}},"e":{"8":{"docs":{"docs/guides/basics/Histories.html":{"ref":"docs/guides/basics/Histories.html","tf":0.002512562814070352}}},"9":{"docs":{"docs/guides/basics/Histories.html":{"ref":"docs/guides/basics/Histories.html","tf":0.002512562814070352}}},"docs":{}}},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{"docs/Glossary.html":{"ref":"docs/Glossary.html","tf":0.005822416302765648},"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0017533606078316774},"docs/guides/basics/Histories.html":{"ref":"docs/guides/basics/Histories.html","tf":0.002512562814070352}},"=":{"docs":{},"{":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{},"i":{"docs":{},"d":{"docs":{},"}":{"docs":{},">":{"docs":{},"<":{"docs":{},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{},"k":{"docs":{"index.html":{"ref":"index.html","tf":0.005012531328320802}}}}}}}}}}}}}}}},"t":{"docs":{},"h":{"docs":{},"i":{"docs":{},"s":{"docs":{},".":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"l":{"docs":{},"e":{"docs":{},"r":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"p":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0017533606078316774}}}}},"n":{"docs":{},"o":{"docs":{},"w":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0014611338398597311}}}}}},"l":{"docs":{"docs/guides/basics/Histories.html":{"ref":"docs/guides/basics/Histories.html","tf":0.010050251256281407}},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"index.html":{"ref":"index.html","tf":0.010025062656641603}}}}}}},"i":{"docs":{"index.html":{"ref":"index.html","tf":0.005012531328320802},"docs/API.html":{"ref":"docs/API.html","tf":0.003771551724137931}},"n":{"docs":{},"k":{"docs":{"index.html":{"ref":"index.html","tf":0.022556390977443608},"docs/API.html":{"ref":"docs/API.html","tf":0.015086206896551725},"docs/Introduction.html":{"ref":"docs/Introduction.html","tf":0.012779552715654952},"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.009059029807130333},"docs/guides/basics/IndexRoutes.html":{"ref":"docs/guides/basics/IndexRoutes.html","tf":0.027777777777777776},"docs/guides/basics/RouteConfiguration.html":{"ref":"docs/guides/basics/RouteConfiguration.html","tf":0.002857142857142857}}}},"s":{"docs":{},"t":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462}},"e":{"docs":{},"n":{"docs":{"docs/Glossary.html":{"ref":"docs/Glossary.html","tf":0.008733624454148471},"docs/guides/basics/Histories.html":{"ref":"docs/guides/basics/Histories.html","tf":0.002512562814070352}},"(":{"docs":{},"(":{"docs":{},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0010775862068965517}}}}}}}},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{"docs/Glossary.html":{"ref":"docs/Glossary.html","tf":0.002911208151382824}}}}}}}}},"b":{"docs":{},"e":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"v":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0010775862068965517}}}}}}}}}}}}}}}}}}}}}}}}}}}}},">":{"docs":{},"<":{"docs":{},"a":{"docs":{"docs/Introduction.html":{"ref":"docs/Introduction.html","tf":0.006389776357827476}}},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{},"k":{"docs":{"docs/Introduction.html":{"ref":"docs/Introduction.html","tf":0.006389776357827476},"docs/guides/basics/RouteConfiguration.html":{"ref":"docs/guides/basics/RouteConfiguration.html","tf":0.005714285714285714}}}}}}}},"f":{"docs":{},"e":{"docs":{},"c":{"docs":{},"y":{"docs":{},"c":{"docs":{},"l":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0014611338398597311},"docs/guides/advanced/ConfirmingNavigation.html":{"ref":"docs/guides/advanced/ConfirmingNavigation.html","tf":0.08780487804878048}}}}}}}}},"o":{"docs":{},"g":{"docs":{"index.html":{"ref":"index.html","tf":0.015037593984962405},"docs/guides/basics/Histories.html":{"ref":"docs/guides/basics/Histories.html","tf":0.002512562814070352}},"i":{"docs":{},"n":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0011689070718877848}}}}},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.014547413793103448},"docs/Glossary.html":{"ref":"docs/Glossary.html","tf":0.06550218340611354},"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0032144944476914087},"docs/guides/advanced/ComponentLifecycle.html":{"ref":"docs/guides/advanced/ComponentLifecycle.html","tf":0.003194888178913738},"docs/guides/advanced/ServerRendering.html":{"ref":"docs/guides/advanced/ServerRendering.html","tf":0.031496062992125984},"docs/guides/basics/Histories.html":{"ref":"docs/guides/basics/Histories.html","tf":0.02512562814070352}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},",":{"docs":{},"<":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0005387931034482759}}}}}}}}}}}}}}}}}},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{"docs/Glossary.html":{"ref":"docs/Glossary.html","tf":0.011644832605531296}}}}},"s":{"docs":{},"t":{"docs":{"docs/Glossary.html":{"ref":"docs/Glossary.html","tf":0.020378457059679767}}}},".":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"h":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0029222676797194622}},"e":{"docs":{},"+":{"docs":{},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{},"s":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{},"c":{"docs":{},"h":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0029222676797194622}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{},"c":{"docs":{},"h":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0029222676797194622}}}}}}}}},"=":{"docs":{},"\"":{"docs":{},"h":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0017533606078316774}}}}}}}}}}}}}}}}},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"docs/Glossary.html":{"ref":"docs/Glossary.html","tf":0.001455604075691412}}}}}}},"d":{"docs":{"docs/guides/advanced/ServerRendering.html":{"ref":"docs/guides/advanced/ServerRendering.html","tf":0.015748031496062992}}}},"n":{"docs":{},"g":{"docs":{},"e":{"docs":{},"r":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0008766803039158387}}}}}},"o":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}}}},"s":{"docs":{},"e":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}},"t":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0014611338398597311}}}},"e":{"docs":{},"a":{"docs":{},"v":{"docs":{"docs/Glossary.html":{"ref":"docs/Glossary.html","tf":0.002911208151382824},"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462},"docs/guides/advanced/ConfirmingNavigation.html":{"ref":"docs/guides/advanced/ConfirmingNavigation.html","tf":0.02926829268292683}},"e":{"docs":{},"h":{"docs":{},"o":{"docs":{},"o":{"docs":{},"k":{"docs":{"docs/Glossary.html":{"ref":"docs/Glossary.html","tf":0.011644832605531296}}}}}}}}}}},"m":{"docs":{},"a":{"docs":{},"p":{"docs":{"index.html":{"ref":"index.html","tf":0.002506265664160401}}},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"index.html":{"ref":"index.html","tf":0.010025062656641603}}}}}},"i":{"docs":{},"n":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.003232758620689655},"docs/guides/advanced/NavigatingOutsideOfComponents.html":{"ref":"docs/guides/advanced/NavigatingOutsideOfComponents.html","tf":0.041666666666666664}},"=":{"docs":{},"{":{"docs":{},"<":{"docs":{},"u":{"docs":{},"s":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0016163793103448276}}}}}}}}},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.004310344827586207},"docs/Glossary.html":{"ref":"docs/Glossary.html","tf":0.001455604075691412},"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0011689070718877848},"docs/guides/advanced/ServerRendering.html":{"ref":"docs/guides/advanced/ServerRendering.html","tf":0.07086614173228346}},"(":{"docs":{},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0021551724137931034},"docs/Glossary.html":{"ref":"docs/Glossary.html","tf":0.002911208151382824}}}}}}}}},"d":{"docs":{},"e":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462}}}},"k":{"docs":{},"e":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0014611338398597311}},"h":{"docs":{},"r":{"docs":{},"e":{"docs":{},"f":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462}},"(":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0014611338398597311}}}}}}}}}}}}}}},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"h":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462}},"(":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0014611338398597311}}}}}}}}}}}}}}},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{},"h":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"(":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}}}}}}}}}}}}}}},"n":{"docs":{},"i":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462}}}}},"e":{"docs":{},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"d":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0005387931034482759},"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.004675628287551139}}}}}},"s":{"docs":{},"s":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462}},"a":{"docs":{},"g":{"docs":{"docs/Introduction.html":{"ref":"docs/Introduction.html","tf":0.039936102236421724},"docs/guides/basics/RouteConfiguration.html":{"ref":"docs/guides/basics/RouteConfiguration.html","tf":0.03428571428571429}},"e":{"docs":{},"s":{"docs":{},"/":{"5":{"docs":{"docs/guides/basics/RouteConfiguration.html":{"ref":"docs/guides/basics/RouteConfiguration.html","tf":0.005714285714285714}}},"docs":{},":":{"docs":{},"i":{"docs":{},"d":{"docs":{"docs/Introduction.html":{"ref":"docs/Introduction.html","tf":0.001597444089456869},"docs/guides/basics/RouteConfiguration.html":{"ref":"docs/guides/basics/RouteConfiguration.html","tf":0.041428571428571426}}}}}}}}}}}},"a":{"docs":{},"n":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462}}}},"m":{"docs":{},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{"docs/guides/basics/Histories.html":{"ref":"docs/guides/basics/Histories.html","tf":0.002512562814070352}}}}}}},"i":{"docs":{},"x":{"docs":{},"i":{"docs":{},"n":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.010237068965517241},"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.015488018702513151},"docs/guides/advanced/ConfirmingNavigation.html":{"ref":"docs/guides/advanced/ConfirmingNavigation.html","tf":0.08292682926829269}},"'":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462}}}}}},"s":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"m":{"docs":{},"u":{"docs":{},"n":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462}}}}}}}},"s":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462}}},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"o":{"docs":{},"d":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462}}}}}}}}}}}}}},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0016163793103448276},"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0008766803039158387}}}}},"v":{"docs":{},"i":{"docs":{"docs/Introduction.html":{"ref":"docs/Introduction.html","tf":0.006389776357827476}}},"e":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462}}}}},"y":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"o":{"docs":{},"n":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.003232758620689655}},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0010775862068965517}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0010775862068965517}},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.003232758620689655}}}}}}}}}}},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.005387931034482759}}}}}}},"u":{"docs":{},"c":{"docs":{},"h":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0011689070718877848}}}},"l":{"docs":{},"t":{"docs":{},"i":{"docs":{},"p":{"docs":{},"l":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}}}}}}},"n":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0021551724137931034}},"p":{"docs":{},"m":{"docs":{"index.html":{"ref":"index.html","tf":0.010025062656641603},"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0008766803039158387}}}},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0035067212156633548}},":":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"o":{"docs":{},"n":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0010775862068965517}}}}}}}}},"=":{"docs":{},"\"":{"docs":{},"a":{"docs":{},"b":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0023378141437755697}}}}}}},"d":{"docs":{},"a":{"docs":{},"s":{"docs":{},"h":{"docs":{},"b":{"docs":{},"o":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0011689070718877848}}}}}}}}}}},"h":{"docs":{},"o":{"docs":{},"m":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}}},"u":{"docs":{},"s":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0017533606078316774}}}}}}}},"v":{"docs":{},"i":{"docs":{},"g":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.004383401519579193}},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"a":{"docs":{},"f":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{},"h":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"h":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0011689070718877848}}}}}}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"i":{"docs":{},"v":{"docs":{"docs/guides/basics/Histories.html":{"ref":"docs/guides/basics/Histories.html","tf":0.002512562814070352}}}}}},"e":{"docs":{},"e":{"docs":{},"d":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0010775862068965517},"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.004383401519579193}}}},"w":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0016163793103448276},"docs/Introduction.html":{"ref":"docs/Introduction.html","tf":0.006389776357827476},"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0020455873758036236}},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}}}},"i":{"docs":{},"d":{"docs":{"docs/guides/advanced/ComponentLifecycle.html":{"ref":"docs/guides/advanced/ComponentLifecycle.html","tf":0.012779552715654952}}}},"h":{"docs":{},"a":{"docs":{},"s":{"docs":{},"h":{"docs":{"docs/guides/basics/Histories.html":{"ref":"docs/guides/basics/Histories.html","tf":0.005025125628140704}}}}}}},"x":{"docs":{},"t":{"docs":{},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0026939655172413795},"docs/Glossary.html":{"ref":"docs/Glossary.html","tf":0.002911208151382824}}}}},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0021551724137931034},"docs/Glossary.html":{"ref":"docs/Glossary.html","tf":0.005822416302765648},"docs/guides/basics/RouteConfiguration.html":{"ref":"docs/guides/basics/RouteConfiguration.html","tf":0.002857142857142857}},"e":{"docs":{},".":{"docs":{},"p":{"docs":{},"a":{"docs":{},"r":{"docs":{},"a":{"docs":{},"m":{"docs":{},"s":{"docs":{},".":{"docs":{},"i":{"docs":{},"d":{"docs":{"docs/guides/basics/RouteConfiguration.html":{"ref":"docs/guides/basics/RouteConfiguration.html","tf":0.002857142857142857}}}}}}}}}}}}}}}}},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"s":{"docs":{},".":{"docs":{},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{"docs/Troubleshooting.html":{"ref":"docs/Troubleshooting.html","tf":0.0425531914893617}}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}},"e":{"docs":{},"d":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{"docs/guides/advanced/ConfirmingNavigation.html":{"ref":"docs/guides/advanced/ConfirmingNavigation.html","tf":0.01951219512195122}}}}}}}}}}},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0021551724137931034}}}},"n":{"docs":{},"e":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0011689070718877848}}}},"t":{"docs":{},"e":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0014611338398597311}}},"f":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}}}}}}}}},"h":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462}}}},"w":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.004675628287551139}}}},"u":{"docs":{},"l":{"docs":{},"l":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.005387931034482759},"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462},"docs/guides/advanced/ComponentLifecycle.html":{"ref":"docs/guides/advanced/ComponentLifecycle.html","tf":0.009584664536741214},"docs/guides/advanced/DynamicRouting.html":{"ref":"docs/guides/advanced/DynamicRouting.html","tf":0.02564102564102564},"docs/guides/basics/RouteConfiguration.html":{"ref":"docs/guides/basics/RouteConfiguration.html","tf":0.0014285714285714286}}}},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{"docs/Glossary.html":{"ref":"docs/Glossary.html","tf":0.002911208151382824}}}}}}},"/":{"docs":{},"a":{"docs":{"docs/guides/advanced/ComponentLifecycle.html":{"ref":"docs/guides/advanced/ComponentLifecycle.html","tf":0.07667731629392971}}}},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},"x":{"docs":{"docs/guides/basics/Histories.html":{"ref":"docs/guides/basics/Histories.html","tf":0.005025125628140704},"docs/guides/basics/RouteConfiguration.html":{"ref":"docs/guides/basics/RouteConfiguration.html","tf":0.0014285714285714286}}}}}}},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0011689070718877848}},"f":{"docs":{},"l":{"docs":{},"o":{"docs":{},"w":{"docs":{"index.html":{"ref":"index.html","tf":0.012531328320802004}}}}}}}}},"n":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462}},"c":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"k":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.003771551724137931}},"(":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0010775862068965517}}}}}}},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}},"e":{"docs":{},"=":{"docs":{},"{":{"docs":{},"f":{"docs":{},"n":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}}}}}}}}}},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0005387931034482759},"docs/Glossary.html":{"ref":"docs/Glossary.html","tf":0.00727802037845706},"docs/guides/basics/IndexRoutes.html":{"ref":"docs/guides/basics/IndexRoutes.html","tf":0.018518518518518517},"docs/guides/basics/RouteConfiguration.html":{"ref":"docs/guides/basics/RouteConfiguration.html","tf":0.015714285714285715}},"e":{"docs":{},"r":{"docs":{},"(":{"docs":{},"n":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},"s":{"docs":{},"t":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0010775862068965517}}}}}}}}},"=":{"docs":{},"{":{"docs":{},"(":{"docs":{},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}}}}}}}}}},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0005387931034482759},"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}},"(":{"docs":{},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0010775862068965517}}}}}}}},"=":{"docs":{},"{":{"docs":{},"f":{"docs":{},"n":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0011689070718877848}}}}}}}}}}},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"v":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0016163793103448276},"docs/Glossary.html":{"ref":"docs/Glossary.html","tf":0.002911208151382824},"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924},"docs/guides/basics/RouteConfiguration.html":{"ref":"docs/guides/basics/RouteConfiguration.html","tf":0.017142857142857144}}}}},"y":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"o":{"docs":{},"n":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0029222676797194622}}}}}}}}}}}}}}}}},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0016163793103448276}}}}},"a":{"docs":{},"b":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"t":{"docs":{},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"s":{"docs":{},"i":{"docs":{},"t":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}}}}}}}}}}}}},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}},"e":{"docs":{},"=":{"docs":{},"{":{"docs":{},"f":{"docs":{},"n":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"s":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}}}}}}}}}}}}}}}},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"docs/Glossary.html":{"ref":"docs/Glossary.html","tf":0.008733624454148471}}}}}}},"l":{"docs":{},"d":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0011689070718877848}},"i":{"docs":{},"d":{"docs":{"docs/guides/advanced/ComponentLifecycle.html":{"ref":"docs/guides/advanced/ComponentLifecycle.html","tf":0.012779552715654952}}}}}},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}},"t":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0008766803039158387}}}}}}},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462}}}}}},"u":{"docs":{},"t":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}}},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"h":{"docs":{"index.html":{"ref":"index.html","tf":0.010025062656641603},"docs/API.html":{"ref":"docs/API.html","tf":0.011853448275862068},"docs/Glossary.html":{"ref":"docs/Glossary.html","tf":0.02911208151382824},"docs/Introduction.html":{"ref":"docs/Introduction.html","tf":0.022364217252396165},"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0070134424313267095},"docs/guides/advanced/ComponentLifecycle.html":{"ref":"docs/guides/advanced/ComponentLifecycle.html","tf":0.006389776357827476},"docs/guides/advanced/DynamicRouting.html":{"ref":"docs/guides/advanced/DynamicRouting.html","tf":0.017094017094017096},"docs/guides/basics/Histories.html":{"ref":"docs/guides/basics/Histories.html","tf":0.01256281407035176},"docs/guides/basics/IndexRoutes.html":{"ref":"docs/guides/basics/IndexRoutes.html","tf":0.037037037037037035},"docs/guides/basics/RouteConfiguration.html":{"ref":"docs/guides/basics/RouteConfiguration.html","tf":0.025714285714285714}},"=":{"docs":{},"\"":{"docs":{},"/":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"/":{"docs":{},":":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{},"d":{"docs":{"index.html":{"ref":"index.html","tf":0.005012531328320802},"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0011689070718877848}}}}}}}}}},"s":{"docs":{},"/":{"docs":{},":":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{},"d":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0010775862068965517}}}}}}}}}}}}}}},"b":{"docs":{},"a":{"docs":{},"r":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}}},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"r":{"docs":{},"s":{"docs":{},"e":{"docs":{},"/":{"docs":{},":":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"r":{"docs":{},"s":{"docs":{},"e":{"docs":{},"i":{"docs":{},"d":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0011689070718877848}},"/":{"docs":{},"a":{"docs":{},"n":{"docs":{},"n":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}}}}}},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"g":{"docs":{},"n":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}}}}}}}}}}}}}}}}}}}}},"m":{"docs":{"docs/guides/basics/RouteMatching.html":{"ref":"docs/guides/basics/RouteMatching.html","tf":0.03076923076923077}}}}},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924},"docs/guides/basics/RouteMatching.html":{"ref":"docs/guides/basics/RouteMatching.html","tf":0.03076923076923077}},"e":{"docs":{},"/":{"docs":{},":":{"docs":{},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}},"e":{"docs":{},".":{"docs":{},"?":{"docs":{},":":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"o":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0011689070718877848}}}}},"m":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"s":{"docs":{},"/":{"docs":{},":":{"docs":{},"i":{"docs":{},"d":{"docs":{"docs/guides/basics/RouteConfiguration.html":{"ref":"docs/guides/basics/RouteConfiguration.html","tf":0.005714285714285714}}}}}}}}}}}}}},"h":{"docs":{},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{},"(":{"docs":{},"/":{"docs":{},":":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"docs/guides/basics/RouteMatching.html":{"ref":"docs/guides/basics/RouteMatching.html","tf":0.03076923076923077}}}}}}}},"/":{"docs":{},":":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"docs/guides/basics/RouteMatching.html":{"ref":"docs/guides/basics/RouteMatching.html","tf":0.03076923076923077}}}}}}}}}}}}},"a":{"docs":{},"b":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"index.html":{"ref":"index.html","tf":0.005012531328320802},"docs/Introduction.html":{"ref":"docs/Introduction.html","tf":0.006389776357827476},"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0011689070718877848},"docs/guides/basics/RouteConfiguration.html":{"ref":"docs/guides/basics/RouteConfiguration.html","tf":0.011428571428571429}},"/":{"docs":{},":":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{},"d":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0010775862068965517}}}}}}}}}}}}}},"n":{"docs":{},"n":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}}}}}},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"g":{"docs":{},"n":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}}}}},"c":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"docs/guides/basics/IndexRoutes.html":{"ref":"docs/guides/basics/IndexRoutes.html","tf":0.037037037037037035}},"s":{"docs":{},"/":{"docs":{},":":{"docs":{},"a":{"docs":{},"c":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{},"d":{"docs":{"docs/guides/advanced/ComponentLifecycle.html":{"ref":"docs/guides/advanced/ComponentLifecycle.html","tf":0.006389776357827476}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"s":{"docs":{"index.html":{"ref":"index.html","tf":0.005012531328320802},"docs/API.html":{"ref":"docs/API.html","tf":0.004310344827586207}},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"/":{"docs":{},":":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{},"d":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0021551724137931034}}}}}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"r":{"docs":{},"s":{"docs":{},"e":{"docs":{},"/":{"docs":{},":":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"r":{"docs":{},"s":{"docs":{},"e":{"docs":{},"i":{"docs":{},"d":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0010775862068965517}}}}}}}}}}}},"s":{"docs":{},"/":{"docs":{},":":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"r":{"docs":{},"s":{"docs":{},"e":{"docs":{},"i":{"docs":{},"d":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0021551724137931034}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"a":{"docs":{},"s":{"docs":{},"h":{"docs":{},"b":{"docs":{},"o":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0010775862068965517}}}}}}}}}}},"g":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"p":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.004310344827586207}}}}}}},"i":{"docs":{},"n":{"docs":{},"b":{"docs":{},"o":{"docs":{},"x":{"docs":{"docs/Introduction.html":{"ref":"docs/Introduction.html","tf":0.006389776357827476},"docs/guides/basics/RouteConfiguration.html":{"ref":"docs/guides/basics/RouteConfiguration.html","tf":0.011428571428571429}}}}},"v":{"docs":{},"o":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},"s":{"docs":{},"/":{"docs":{},":":{"docs":{},"i":{"docs":{},"n":{"docs":{},"v":{"docs":{},"o":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},"i":{"docs":{},"d":{"docs":{"docs/guides/advanced/ComponentLifecycle.html":{"ref":"docs/guides/advanced/ComponentLifecycle.html","tf":0.006389776357827476}}}}}}}}}}}}}}}}}}}}},"m":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"s":{"docs":{},"/":{"docs":{},":":{"docs":{},"i":{"docs":{},"d":{"docs":{"docs/Introduction.html":{"ref":"docs/Introduction.html","tf":0.003194888178913738},"docs/guides/basics/RouteConfiguration.html":{"ref":"docs/guides/basics/RouteConfiguration.html","tf":0.005714285714285714}}}}}}}}}}}}}},"b":{"docs":{},"a":{"docs":{},"r":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}}},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{"docs/guides/basics/IndexRoutes.html":{"ref":"docs/guides/basics/IndexRoutes.html","tf":0.037037037037037035}}}}}}},"'":{"docs":{},"a":{"docs":{},"b":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"docs/guides/basics/Histories.html":{"ref":"docs/guides/basics/Histories.html","tf":0.005025125628140704}}}}}}},"f":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{"docs/guides/basics/Histories.html":{"ref":"docs/guides/basics/Histories.html","tf":0.005025125628140704}}}}}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.009159482758620689},"docs/Glossary.html":{"ref":"docs/Glossary.html","tf":0.04512372634643377}}}}},"”":{"docs":{},")":{"docs":{},"是":{"docs":{},"用":{"docs":{},"于":{"docs":{},"描":{"docs":{},"述":{"docs":{},"部":{"docs":{},"分":{"docs":{},"u":{"docs":{},"r":{"docs":{},"l":{"docs":{},"特":{"docs":{},"征":{"docs":{},"的":{"docs":{},"字":{"docs":{},"符":{"docs":{},"串":{"docs":{},"。":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"n":{"docs":{"docs/Glossary.html":{"ref":"docs/Glossary.html","tf":0.001455604075691412}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"n":{"docs":{"docs/Glossary.html":{"ref":"docs/Glossary.html","tf":0.00727802037845706}}}}}}},"r":{"docs":{},"a":{"docs":{},"m":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0016163793103448276},"docs/Glossary.html":{"ref":"docs/Glossary.html","tf":0.040756914119359534},"docs/Introduction.html":{"ref":"docs/Introduction.html","tf":0.003194888178913738},"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.013734658094681473},"docs/guides/advanced/ComponentLifecycle.html":{"ref":"docs/guides/advanced/ComponentLifecycle.html","tf":0.003194888178913738}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"docs/Glossary.html":{"ref":"docs/Glossary.html","tf":0.004366812227074236},"docs/guides/basics/RouteMatching.html":{"ref":"docs/guides/basics/RouteMatching.html","tf":0.046153846153846156}}}}},"s":{"docs":{},"/":{"docs":{},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0008766803039158387}}}}}}}},"=":{"docs":{},"{":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},".":{"docs":{},"p":{"docs":{},"a":{"docs":{},"r":{"docs":{},"a":{"docs":{},"m":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}}}}}}}}}}},"{":{"docs":{},"i":{"docs":{},"d":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{},"d":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0011689070718877848}}}}}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"y":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0005387931034482759}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"(":{"docs":{},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"y":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0010775862068965517}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"docs/Glossary.html":{"ref":"docs/Glossary.html","tf":0.001455604075691412},"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}}}},"c":{"docs":{},"k":{"docs":{},"a":{"docs":{},"g":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462}}}}}},"g":{"docs":{},"e":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}},"s":{"docs":{},"s":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.003798947983635301}}}},"y":{"docs":{},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0008766803039158387}}}}}}}},"i":{"docs":{},"c":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{},"e":{"docs":{},"/":{"1":{"2":{"3":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0005387931034482759}}},"docs":{}},"docs":{}},"docs":{},":":{"docs":{},"i":{"docs":{},"d":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0016163793103448276}}}}}},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0010775862068965517}}}}}}}}}}}},"l":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.00646551724137931}}}}}}}},"c":{"docs":{},"e":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462}}}}},"e":{"docs":{},"a":{"docs":{},"s":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0014611338398597311}}}}}},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"docs/guides/basics/Histories.html":{"ref":"docs/guides/basics/Histories.html","tf":0.017587939698492462}},"f":{"docs":{},"o":{"docs":{},"l":{"docs":{},"i":{"docs":{},"o":{"docs":{},"i":{"docs":{},"d":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0010775862068965517}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462}},"e":{"docs":{},"r":{"docs":{"docs/Glossary.html":{"ref":"docs/Glossary.html","tf":0.002911208151382824}}}}}}},"p":{"docs":{"docs/Glossary.html":{"ref":"docs/Glossary.html","tf":0.008733624454148471}}},"s":{"docs":{},"i":{"docs":{},"t":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462}}}},"t":{"docs":{"docs/guides/basics/Histories.html":{"ref":"docs/guides/basics/Histories.html","tf":0.002512562814070352}}}}},"r":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"d":{"docs":{},"e":{"docs":{},"f":{"docs":{},"a":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0005387931034482759}}}}}}}}}}}},"i":{"docs":{},"o":{"docs":{},"u":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}}},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{"docs/guides/advanced/ComponentLifecycle.html":{"ref":"docs/guides/advanced/ComponentLifecycle.html","tf":0.006389776357827476}},"s":{"docs":{},".":{"docs":{},"p":{"docs":{},"a":{"docs":{},"r":{"docs":{},"a":{"docs":{},"m":{"docs":{},"s":{"docs":{},".":{"docs":{},"i":{"docs":{},"n":{"docs":{},"v":{"docs":{},"o":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},"i":{"docs":{},"d":{"docs":{"docs/guides/advanced/ComponentLifecycle.html":{"ref":"docs/guides/advanced/ComponentLifecycle.html","tf":0.006389776357827476}}}}}}}}}}}}}}}}}}}}}}}}},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462}}}}},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462}},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},"i":{"docs":{},"t":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0011689070718877848}}}}}}}}}}}}}}}}}},"t":{"docs":{},"t":{"docs":{},"i":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0008766803039158387}}}}}},"o":{"docs":{},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.00646551724137931}},"e":{"docs":{},"/":{"1":{"2":{"3":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.003232758620689655}}},"docs":{}},"docs":{}},"docs":{},":":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{},"d":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0005387931034482759}}}}}}}}}}}}}},"o":{"docs":{},"f":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0010775862068965517}}}}}}}},"p":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.017780172413793104},"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0061367621274108705},"docs/guides/advanced/ComponentLifecycle.html":{"ref":"docs/guides/advanced/ComponentLifecycle.html","tf":0.009584664536741214}},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.004310344827586207}},"e":{"docs":{},"s":{"docs":{},".":{"docs":{},"h":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0010775862068965517}}}}}}}}}}}}}}},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}}}}},"b":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0008766803039158387}}}}}},"m":{"docs":{},"i":{"docs":{},"s":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462}}}}},"x":{"docs":{},"i":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462}}}},"c":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},".":{"docs":{},"e":{"docs":{},"n":{"docs":{},"v":{"docs":{},".":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"docs/guides/basics/Histories.html":{"ref":"docs/guides/basics/Histories.html","tf":0.005025125628140704}}}}}}}}}}}}}}}},"u":{"docs":{},"n":{"docs":{},"e":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}}}},"u":{"docs":{},"s":{"docs":{},"h":{"docs":{"docs/Glossary.html":{"ref":"docs/Glossary.html","tf":0.008733624454148471},"docs/guides/advanced/NavigatingOutsideOfComponents.html":{"ref":"docs/guides/advanced/NavigatingOutsideOfComponents.html","tf":0.013888888888888888},"docs/guides/basics/Histories.html":{"ref":"docs/guides/basics/Histories.html","tf":0.005025125628140704}},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0026939655172413795},"docs/Glossary.html":{"ref":"docs/Glossary.html","tf":0.00727802037845706},"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462}},"e":{"docs":{},"(":{"docs":{},"s":{"docs":{},"t":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0010775862068965517}}}}}}}}}}}},"l":{"docs":{},"l":{"docs":{"docs/Introduction.html":{"ref":"docs/Introduction.html","tf":0.009584664536741214}}}},"b":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462},"docs/guides/basics/Histories.html":{"ref":"docs/guides/basics/Histories.html","tf":0.01507537688442211}}}}}},"t":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}},"e":{"docs":{},"o":{"docs":{},"p":{"docs":{},"l":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}}},"r":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462}},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}}}},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},"i":{"docs":{},"t":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"t":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}},"/":{"docs":{},"r":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"t":{"docs":{"index.html":{"ref":"index.html","tf":0.005012531328320802}}}}}}},"h":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0008766803039158387}}}}}}}}}}}}},"i":{"docs":{},"s":{"docs":{},"e":{"docs":{},"d":{"docs":{},"_":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{"docs/guides/basics/RouteConfiguration.html":{"ref":"docs/guides/basics/RouteConfiguration.html","tf":0.0014285714285714286}}}}}}}}}}}},"e":{"docs":{"docs/guides/advanced/ServerRendering.html":{"ref":"docs/guides/advanced/ServerRendering.html","tf":0.015748031496062992}},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"index.html":{"ref":"index.html","tf":0.07017543859649122},"docs/API.html":{"ref":"docs/API.html","tf":0.00646551724137931},"docs/Glossary.html":{"ref":"docs/Glossary.html","tf":0.001455604075691412},"docs/Introduction.html":{"ref":"docs/Introduction.html","tf":0.04792332268370607},"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.004383401519579193},"docs/guides/advanced/ComponentLifecycle.html":{"ref":"docs/guides/advanced/ComponentLifecycle.html","tf":0.003194888178913738},"docs/guides/advanced/ConfirmingNavigation.html":{"ref":"docs/guides/advanced/ConfirmingNavigation.html","tf":0.04878048780487805},"docs/guides/advanced/DynamicRouting.html":{"ref":"docs/guides/advanced/DynamicRouting.html","tf":0.02564102564102564},"docs/guides/advanced/NavigatingOutsideOfComponents.html":{"ref":"docs/guides/advanced/NavigatingOutsideOfComponents.html","tf":0.08333333333333333},"docs/guides/advanced/ServerRendering.html":{"ref":"docs/guides/advanced/ServerRendering.html","tf":0.047244094488188976},"docs/guides/basics/Histories.html":{"ref":"docs/guides/basics/Histories.html","tf":0.04773869346733668},"docs/guides/basics/RouteConfiguration.html":{"ref":"docs/guides/basics/RouteConfiguration.html","tf":0.02},"docs/guides/basics/RouteMatching.html":{"ref":"docs/guides/basics/RouteMatching.html","tf":0.03076923076923077}},".":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{"index.html":{"ref":"index.html","tf":0.020050125313283207},"docs/API.html":{"ref":"docs/API.html","tf":0.003232758620689655},"docs/Introduction.html":{"ref":"docs/Introduction.html","tf":0.025559105431309903},"docs/Troubleshooting.html":{"ref":"docs/Troubleshooting.html","tf":0.0425531914893617},"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.020455873758036237},"docs/guides/advanced/ComponentLifecycle.html":{"ref":"docs/guides/advanced/ComponentLifecycle.html","tf":0.006389776357827476},"docs/guides/advanced/ConfirmingNavigation.html":{"ref":"docs/guides/advanced/ConfirmingNavigation.html","tf":0.03902439024390244},"docs/guides/basics/RouteConfiguration.html":{"ref":"docs/guides/basics/RouteConfiguration.html","tf":0.014285714285714285}}}}}}},"e":{"docs":{},"l":{"docs":{"docs/Glossary.html":{"ref":"docs/Glossary.html","tf":0.004366812227074236}}}}}}}}},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"o":{"docs":{},"n":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.01293103448275862},"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0008766803039158387}}}}}}},"l":{"docs":{},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"(":{"docs":{},"t":{"docs":{},"h":{"docs":{},"i":{"docs":{},"s":{"docs":{},".":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"s":{"docs":{},".":{"docs":{},"c":{"docs":{},"h":{"docs":{},"i":{"docs":{},"l":{"docs":{},"d":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{"index.html":{"ref":"index.html","tf":0.005012531328320802},"docs/Introduction.html":{"ref":"docs/Introduction.html","tf":0.006389776357827476},"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924},"docs/guides/basics/RouteConfiguration.html":{"ref":"docs/guides/basics/RouteConfiguration.html","tf":0.011428571428571429}},"e":{"docs":{},"r":{"docs":{},"(":{"docs":{},"<":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{"docs/Introduction.html":{"ref":"docs/Introduction.html","tf":0.003194888178913738}}}}},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"docs/Introduction.html":{"ref":"docs/Introduction.html","tf":0.003194888178913738},"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0011689070718877848},"docs/guides/basics/RouteConfiguration.html":{"ref":"docs/guides/basics/RouteConfiguration.html","tf":0.002857142857142857}},"e":{"docs":{},"r":{"docs":{},">":{"docs":{},"{":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"}":{"docs":{},"<":{"docs":{},"/":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}}}}}}}}}}}}}}}}}}}}},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"l":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0035067212156633548}}}}}}}},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}}}}},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"(":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}}}}}}}}}}}}}},"t":{"docs":{},"o":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"(":{"docs":{},"<":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"l":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"s":{"docs":{},".":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0011689070718877848}}}}}},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}}}}}}}}}}}}}}}},"j":{"docs":{"docs/guides/advanced/DynamicRouting.html":{"ref":"docs/guides/advanced/DynamicRouting.html","tf":0.017094017094017096}}}},"i":{"docs":{},"f":{"docs":{},"l":{"docs":{},"u":{"docs":{},"x":{"docs":{"index.html":{"ref":"index.html","tf":0.005012531328320802}}}}}}},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"index.html":{"ref":"index.html","tf":0.005012531328320802}},"e":{"docs":{},"r":{"docs":{},".":{"docs":{},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{},"k":{"docs":{"index.html":{"ref":"index.html","tf":0.005012531328320802}}}}}},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"index.html":{"ref":"index.html","tf":0.010025062656641603}}}}}}}}}}}}},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{"docs/Glossary.html":{"ref":"docs/Glossary.html","tf":0.002911208151382824}}}}}}},"组":{"docs":{},"件":{"docs":{},"对":{"docs":{},"应":{"docs":{},"的":{"docs":{},"类":{"docs":{},"或":{"docs":{},"者":{"docs":{},"字":{"docs":{},"符":{"docs":{},"串":{"docs":{},"(":{"docs":{},"比":{"docs":{},"如":{"docs":{},"“":{"docs":{},"d":{"docs":{},"i":{"docs":{},"v":{"docs":{"docs/Glossary.html":{"ref":"docs/Glossary.html","tf":0.001455604075691412}}}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{"index.html":{"ref":"index.html","tf":0.017543859649122806},"docs/API.html":{"ref":"docs/API.html","tf":0.017780172413793104},"docs/Introduction.html":{"ref":"docs/Introduction.html","tf":0.03194888178913738},"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.016072472238457043},"docs/guides/advanced/ComponentLifecycle.html":{"ref":"docs/guides/advanced/ComponentLifecycle.html","tf":0.006389776357827476},"docs/guides/advanced/ConfirmingNavigation.html":{"ref":"docs/guides/advanced/ConfirmingNavigation.html","tf":0.014634146341463415},"docs/guides/advanced/NavigatingOutsideOfComponents.html":{"ref":"docs/guides/advanced/NavigatingOutsideOfComponents.html","tf":0.05555555555555555},"docs/guides/basics/Histories.html":{"ref":"docs/guides/basics/Histories.html","tf":0.020100502512562814},"docs/guides/basics/RouteConfiguration.html":{"ref":"docs/guides/basics/RouteConfiguration.html","tf":0.03428571428571429}},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0026939655172413795},"docs/guides/advanced/ServerRendering.html":{"ref":"docs/guides/advanced/ServerRendering.html","tf":0.06299212598425197}}}}}},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"o":{"docs":{},"n":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}}}}}},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462}}}}}}}}}}}}},"t":{"docs":{},"o":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462},"docs/guides/advanced/ServerRendering.html":{"ref":"docs/guides/advanced/ServerRendering.html","tf":0.023622047244094488}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"(":{"docs":{},"<":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{"docs/guides/advanced/ServerRendering.html":{"ref":"docs/guides/advanced/ServerRendering.html","tf":0.015748031496062992}}}}}}}}}}}}}}}}}}}}}}}}}},"(":{"docs":{},"<":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"docs/guides/advanced/NavigatingOutsideOfComponents.html":{"ref":"docs/guides/advanced/NavigatingOutsideOfComponents.html","tf":0.027777777777777776}}}}}}}}}}}},"q":{"docs":{},"u":{"docs":{"docs/Introduction.html":{"ref":"docs/Introduction.html","tf":0.006389776357827476}},"i":{"docs":{},"r":{"docs":{"index.html":{"ref":"index.html","tf":0.002506265664160401},"docs/API.html":{"ref":"docs/API.html","tf":0.0005387931034482759},"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0014611338398597311},"docs/guides/advanced/DynamicRouting.html":{"ref":"docs/guides/advanced/DynamicRouting.html","tf":0.09401709401709402},"docs/guides/basics/Histories.html":{"ref":"docs/guides/basics/Histories.html","tf":0.005025125628140704}},"e":{"docs":{},"(":{"docs":{},"'":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"index.html":{"ref":"index.html","tf":0.005012531328320802},"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0017533606078316774}}}}}}},".":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"r":{"docs":{},"s":{"docs":{"docs/guides/advanced/DynamicRouting.html":{"ref":"docs/guides/advanced/DynamicRouting.html","tf":0.017094017094017096}}}}}}},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{"docs/guides/advanced/DynamicRouting.html":{"ref":"docs/guides/advanced/DynamicRouting.html","tf":0.017094017094017096}}}}}}}}}}}}}}}}}},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"/":{"docs":{},"a":{"docs":{},"n":{"docs":{},"n":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{"docs/guides/advanced/DynamicRouting.html":{"ref":"docs/guides/advanced/DynamicRouting.html","tf":0.017094017094017096}}}}}}}},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"g":{"docs":{},"n":{"docs":{"docs/guides/advanced/DynamicRouting.html":{"ref":"docs/guides/advanced/DynamicRouting.html","tf":0.017094017094017096}}}}}}}},"g":{"docs":{},"r":{"docs":{},"a":{"docs":{},"d":{"docs":{"docs/guides/advanced/DynamicRouting.html":{"ref":"docs/guides/advanced/DynamicRouting.html","tf":0.017094017094017096}}}}}}}}}}}}}}},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"docs/guides/basics/Histories.html":{"ref":"docs/guides/basics/Histories.html","tf":0.005025125628140704}}}}}}}}},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"h":{"docs":{"docs/guides/basics/Histories.html":{"ref":"docs/guides/basics/Histories.html","tf":0.005025125628140704}}}}}}}},".":{"docs":{},"e":{"docs":{},"n":{"docs":{},"s":{"docs":{},"u":{"docs":{},"r":{"docs":{"docs/guides/advanced/DynamicRouting.html":{"ref":"docs/guides/advanced/DynamicRouting.html","tf":0.05128205128205128}}}}}}}}}}},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462},"docs/guides/basics/Histories.html":{"ref":"docs/guides/basics/Histories.html","tf":0.005025125628140704}},"_":{"docs":{},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"docs/guides/basics/Histories.html":{"ref":"docs/guides/basics/Histories.html","tf":0.010050251256281407}}}}}}}}}}}}}},".":{"docs":{},"u":{"docs":{},"r":{"docs":{},"l":{"docs":{"docs/guides/advanced/ServerRendering.html":{"ref":"docs/guides/advanced/ServerRendering.html","tf":0.03937007874015748}}}}}}},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{},"n":{"docs":{"index.html":{"ref":"index.html","tf":0.015037593984962405},"docs/API.html":{"ref":"docs/API.html","tf":0.01939655172413793},"docs/Glossary.html":{"ref":"docs/Glossary.html","tf":0.013100436681222707},"docs/Introduction.html":{"ref":"docs/Introduction.html","tf":0.023961661341853034},"docs/Troubleshooting.html":{"ref":"docs/Troubleshooting.html","tf":0.06382978723404255},"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.012565751022793687},"docs/guides/advanced/ComponentLifecycle.html":{"ref":"docs/guides/advanced/ComponentLifecycle.html","tf":0.019169329073482427},"docs/guides/advanced/ConfirmingNavigation.html":{"ref":"docs/guides/advanced/ConfirmingNavigation.html","tf":0.08292682926829269},"docs/guides/basics/RouteConfiguration.html":{"ref":"docs/guides/basics/RouteConfiguration.html","tf":0.02142857142857143}}}}},"r":{"docs":{},"i":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0008766803039158387}}}}},"d":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0005387931034482759}},"'":{"docs":{},"}":{"docs":{},"}":{"docs":{},">":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"<":{"docs":{},"/":{"docs":{},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{},"k":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0010775862068965517}}}}}}}}}}}}}}}}},"i":{"docs":{},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.009159482758620689},"docs/Glossary.html":{"ref":"docs/Glossary.html","tf":0.002911208151382824},"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0014611338398597311},"docs/guides/advanced/ServerRendering.html":{"ref":"docs/guides/advanced/ServerRendering.html","tf":0.007874015748031496},"docs/guides/basics/RouteConfiguration.html":{"ref":"docs/guides/basics/RouteConfiguration.html","tf":0.01},"docs/guides/basics/RouteMatching.html":{"ref":"docs/guides/basics/RouteMatching.html","tf":0.03076923076923077}},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.003771551724137931},"docs/guides/advanced/ServerRendering.html":{"ref":"docs/guides/advanced/ServerRendering.html","tf":0.031496062992125984}},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"h":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"docs/guides/advanced/ServerRendering.html":{"ref":"docs/guides/advanced/ServerRendering.html","tf":0.015748031496062992}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{},"c":{"docs":{},"h":{"docs":{"docs/guides/advanced/ServerRendering.html":{"ref":"docs/guides/advanced/ServerRendering.html","tf":0.015748031496062992}}}}}}}}}}}}}}}}},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{"docs/Glossary.html":{"ref":"docs/Glossary.html","tf":0.011644832605531296}}}}}}}}}}}},"u":{"docs":{},"x":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462}},"/":{"docs":{},"f":{"docs":{},"l":{"docs":{},"u":{"docs":{},"x":{"docs":{"docs/guides/advanced/NavigatingOutsideOfComponents.html":{"ref":"docs/guides/advanced/NavigatingOutsideOfComponents.html","tf":0.041666666666666664}}}}}}}}}},"l":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462}},"a":{"docs":{},"y":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0016163793103448276},"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462}},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0010775862068965517}}}}}}}}}}},"e":{"docs":{},"a":{"docs":{},"s":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}}},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462}}}}}},"p":{"docs":{},"l":{"docs":{},"a":{"docs":{},"c":{"docs":{"docs/Glossary.html":{"ref":"docs/Glossary.html","tf":0.008733624454148471},"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462},"docs/guides/basics/Histories.html":{"ref":"docs/guides/basics/Histories.html","tf":0.005025125628140704}},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0021551724137931034},"docs/Glossary.html":{"ref":"docs/Glossary.html","tf":0.01455604075691412},"docs/guides/basics/RouteConfiguration.html":{"ref":"docs/guides/basics/RouteConfiguration.html","tf":0.004285714285714286}},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"s":{"docs":{},"t":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0010775862068965517}}}},"n":{"docs":{},"u":{"docs":{},"l":{"docs":{"docs/guides/basics/RouteConfiguration.html":{"ref":"docs/guides/basics/RouteConfiguration.html","tf":0.002857142857142857}}}}}}}}}}},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0023378141437755697}}}}}}}}},"i":{"docs":{"docs/Introduction.html":{"ref":"docs/Introduction.html","tf":0.012779552715654952}}}},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"docs/Introduction.html":{"ref":"docs/Introduction.html","tf":0.009584664536741214}}}}}},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0029222676797194622}}}}},"s":{"docs":{},".":{"docs":{},"r":{"docs":{},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"(":{"3":{"0":{"2":{"docs":{"docs/guides/advanced/ServerRendering.html":{"ref":"docs/guides/advanced/ServerRendering.html","tf":0.015748031496062992}}},"docs":{}},"docs":{}},"docs":{}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"2":{"0":{"0":{"docs":{"docs/guides/advanced/ServerRendering.html":{"ref":"docs/guides/advanced/ServerRendering.html","tf":0.015748031496062992}}},"docs":{}},"docs":{}},"4":{"0":{"4":{"docs":{"docs/guides/advanced/ServerRendering.html":{"ref":"docs/guides/advanced/ServerRendering.html","tf":0.015748031496062992}}},"docs":{}},"docs":{}},"5":{"0":{"0":{"docs":{"docs/guides/advanced/ServerRendering.html":{"ref":"docs/guides/advanced/ServerRendering.html","tf":0.015748031496062992}}},"docs":{}},"docs":{}},"docs":{}}}}}}},"o":{"docs":{},"l":{"docs":{},"v":{"docs":{"docs/guides/basics/Histories.html":{"ref":"docs/guides/basics/Histories.html","tf":0.002512562814070352}}}}},"p":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{"docs/guides/basics/Histories.html":{"ref":"docs/guides/basics/Histories.html","tf":0.005025125628140704}},"e":{"docs":{},".":{"docs":{},"s":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{},"e":{"docs":{},"(":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"h":{"docs":{},".":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"o":{"docs":{},"l":{"docs":{},"v":{"docs":{},"e":{"docs":{},"(":{"docs":{},"_":{"docs":{},"_":{"docs":{},"d":{"docs":{},"i":{"docs":{},"r":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"docs/guides/basics/Histories.html":{"ref":"docs/guides/basics/Histories.html","tf":0.005025125628140704}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"w":{"docs":{},"r":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"b":{"docs":{},"a":{"docs":{},"s":{"docs":{"docs/guides/basics/Histories.html":{"ref":"docs/guides/basics/Histories.html","tf":0.005025125628140704}}}}},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"d":{"docs":{"docs/guides/basics/Histories.html":{"ref":"docs/guides/basics/Histories.html","tf":0.010050251256281407}}}}}},"r":{"docs":{},"u":{"docs":{},"l":{"docs":{"docs/guides/basics/Histories.html":{"ref":"docs/guides/basics/Histories.html","tf":0.010050251256281407}}}}}}}}}}},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"index.html":{"ref":"index.html","tf":0.05012531328320802},"docs/API.html":{"ref":"docs/API.html","tf":0.1050646551724138},"docs/Glossary.html":{"ref":"docs/Glossary.html","tf":0.05240174672489083},"docs/Introduction.html":{"ref":"docs/Introduction.html","tf":0.05591054313099041},"docs/Troubleshooting.html":{"ref":"docs/Troubleshooting.html","tf":0.14893617021276595},"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.049386323787258914},"docs/guides/advanced/ComponentLifecycle.html":{"ref":"docs/guides/advanced/ComponentLifecycle.html","tf":0.025559105431309903},"docs/guides/advanced/ConfirmingNavigation.html":{"ref":"docs/guides/advanced/ConfirmingNavigation.html","tf":0.09268292682926829},"docs/guides/advanced/DynamicRouting.html":{"ref":"docs/guides/advanced/DynamicRouting.html","tf":0.008547008547008548},"docs/guides/advanced/NavigatingOutsideOfComponents.html":{"ref":"docs/guides/advanced/NavigatingOutsideOfComponents.html","tf":0.027777777777777776},"docs/guides/advanced/ServerRendering.html":{"ref":"docs/guides/advanced/ServerRendering.html","tf":0.10236220472440945},"docs/guides/basics/Histories.html":{"ref":"docs/guides/basics/Histories.html","tf":0.032663316582914576},"docs/guides/basics/IndexRoutes.html":{"ref":"docs/guides/basics/IndexRoutes.html","tf":0.14814814814814814},"docs/guides/basics/RouteConfiguration.html":{"ref":"docs/guides/basics/RouteConfiguration.html","tf":0.08},"docs/guides/basics/RouteMatching.html":{"ref":"docs/guides/basics/RouteMatching.html","tf":0.12307692307692308}},"e":{"docs":{},"r":{"docs":{"index.html":{"ref":"index.html","tf":0.09022556390977443},"docs/API.html":{"ref":"docs/API.html","tf":0.01939655172413793},"docs/Glossary.html":{"ref":"docs/Glossary.html","tf":0.033478893740902474},"docs/Introduction.html":{"ref":"docs/Introduction.html","tf":0.04792332268370607},"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.013442431326709527},"docs/guides/advanced/ComponentLifecycle.html":{"ref":"docs/guides/advanced/ComponentLifecycle.html","tf":0.012779552715654952},"docs/guides/advanced/ConfirmingNavigation.html":{"ref":"docs/guides/advanced/ConfirmingNavigation.html","tf":0.03414634146341464},"docs/guides/advanced/DynamicRouting.html":{"ref":"docs/guides/advanced/DynamicRouting.html","tf":0.02564102564102564},"docs/guides/advanced/NavigatingOutsideOfComponents.html":{"ref":"docs/guides/advanced/NavigatingOutsideOfComponents.html","tf":0.1527777777777778},"docs/guides/advanced/ServerRendering.html":{"ref":"docs/guides/advanced/ServerRendering.html","tf":0.06299212598425197},"docs/guides/basics/Histories.html":{"ref":"docs/guides/basics/Histories.html","tf":0.052763819095477386},"docs/guides/basics/IndexRoutes.html":{"ref":"docs/guides/basics/IndexRoutes.html","tf":0.08333333333333333},"docs/guides/basics/RouteConfiguration.html":{"ref":"docs/guides/basics/RouteConfiguration.html","tf":0.04},"docs/guides/basics/RouteMatching.html":{"ref":"docs/guides/basics/RouteMatching.html","tf":0.03076923076923077}},"/":{"docs":{},"t":{"docs":{},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{},"/":{"docs":{},"m":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"/":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{"index.html":{"ref":"index.html","tf":0.005012531328320802}}}}}}}}}}}}}}}}},"u":{"docs":{},"m":{"docs":{},"d":{"docs":{},"/":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{},"m":{"docs":{},"i":{"docs":{},"n":{"docs":{},".":{"docs":{},"j":{"docs":{"index.html":{"ref":"index.html","tf":0.002506265664160401}},"s":{"docs":{},"\"":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"index.html":{"ref":"index.html","tf":0.005012531328320802}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"b":{"docs":{},"l":{"docs":{},"o":{"docs":{},"b":{"docs":{},"/":{"docs":{},"m":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"/":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"s":{"docs":{},"/":{"docs":{},"a":{"docs":{},"p":{"docs":{},"i":{"docs":{},".":{"docs":{},"m":{"docs":{},"d":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0016163793103448276}}}}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{},"k":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0008766803039158387}}}}}}},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"s":{"docs":{},"=":{"docs":{},"{":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0010775862068965517}}}}}}}}}}}}},"w":{"docs":{},"i":{"docs":{},"l":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"v":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.003771551724137931},"docs/guides/advanced/ConfirmingNavigation.html":{"ref":"docs/guides/advanced/ConfirmingNavigation.html","tf":0.08292682926829269}},"e":{"docs":{},"(":{"docs":{},"n":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0010775862068965517},"docs/guides/advanced/ConfirmingNavigation.html":{"ref":"docs/guides/advanced/ConfirmingNavigation.html","tf":0.01951219512195122}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{"docs/Glossary.html":{"ref":"docs/Glossary.html","tf":0.01455604075691412}}}}}}}},"s":{"docs":{},"t":{"docs":{"docs/Glossary.html":{"ref":"docs/Glossary.html","tf":0.01455604075691412}}}},"(":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}}}}},".":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}}}}}}}},"b":{"docs":{},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"h":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}}}}}}}}}}}}}},"c":{"docs":{},"r":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}},"u":{"docs":{},"r":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"h":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}}}}}}}}}}},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"c":{"docs":{},"u":{"docs":{},"r":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"p":{"docs":{},"a":{"docs":{},"r":{"docs":{},"a":{"docs":{},"m":{"docs":{},"s":{"docs":{},"(":{"docs":{},")":{"docs":{},".":{"docs":{},"i":{"docs":{},"d":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0011689070718877848}}}}}}}}}}}}},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"y":{"docs":{},"(":{"docs":{},")":{"docs":{},".":{"docs":{},"s":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{},"c":{"docs":{},"h":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"m":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0011689070718877848}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"b":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}}}}}},"h":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"y":{"docs":{},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}}}}}}}}}},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{},"k":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}}}},"n":{"docs":{},"a":{"docs":{},"v":{"docs":{},"i":{"docs":{},"g":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}}}}},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"(":{"docs":{},"e":{"docs":{},"l":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}}}}}}}}}}}},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"(":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}}}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"l":{"docs":{},"a":{"docs":{},"c":{"docs":{},"e":{"docs":{},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"(":{"docs":{},"'":{"docs":{},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{},"h":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{},"e":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"l":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}}}}}}}}},"u":{"docs":{},"n":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}},"(":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"b":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}}}}}}}},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.004091174751607247}}}}}}}}}},"s":{"docs":{},"t":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0035067212156633548}}}},"t":{"docs":{},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"s":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"o":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}},"(":{"docs":{},"'":{"docs":{},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{},"h":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}}}}}}}}}}}}}}}}}}}}},"组":{"docs":{},"件":{"docs":{},"上":{"docs":{},"被":{"docs":{},"赋":{"docs":{},"予":{"docs":{},"的":{"docs":{},"h":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{"docs/guides/advanced/NavigatingOutsideOfComponents.html":{"ref":"docs/guides/advanced/NavigatingOutsideOfComponents.html","tf":0.013888888888888888}}}}}}}}}}}}}}}}},".":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"i":{"docs":{},"l":{"docs":{},"d":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0016163793103448276}}}}}}}}}},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"o":{"docs":{},"n":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0010775862068965517}},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},",":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{},"e":{"docs":{},".":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0005387931034482759}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0010775862068965517}}}}}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.003771551724137931},"docs/guides/advanced/ConfirmingNavigation.html":{"ref":"docs/guides/advanced/ConfirmingNavigation.html","tf":0.03414634146341464}}}}}},"f":{"docs":{},"i":{"docs":{},"g":{"docs":{"docs/Glossary.html":{"ref":"docs/Glossary.html","tf":0.008733624454148471},"docs/guides/basics/RouteConfiguration.html":{"ref":"docs/guides/basics/RouteConfiguration.html","tf":0.002857142857142857}}}}}},"m":{"docs":{},"p":{"docs":{},"o":{"docs":{},"n":{"docs":{"docs/Glossary.html":{"ref":"docs/Glossary.html","tf":0.011644832605531296}}}}}}},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{"docs/Troubleshooting.html":{"ref":"docs/Troubleshooting.html","tf":0.0851063829787234}}}}}}},"p":{"docs":{},"a":{"docs":{},"r":{"docs":{},"a":{"docs":{},"m":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0010775862068965517},"docs/Glossary.html":{"ref":"docs/Glossary.html","tf":0.004366812227074236}}}}},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"n":{"docs":{"docs/Glossary.html":{"ref":"docs/Glossary.html","tf":0.011644832605531296}}}}}}}}},"s":{"docs":{},"a":{"docs":{},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"y":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0010775862068965517}}}}}}},"=":{"docs":{},"{":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"docs/Introduction.html":{"ref":"docs/Introduction.html","tf":0.003194888178913738},"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924},"docs/guides/advanced/NavigatingOutsideOfComponents.html":{"ref":"docs/guides/advanced/NavigatingOutsideOfComponents.html","tf":0.027777777777777776},"docs/guides/basics/Histories.html":{"ref":"docs/guides/basics/Histories.html","tf":0.005025125628140704}},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"f":{"docs":{},"i":{"docs":{},"g":{"docs":{"docs/guides/basics/RouteConfiguration.html":{"ref":"docs/guides/basics/RouteConfiguration.html","tf":0.002857142857142857}}}}}}}}}}}}}}},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462}}}}},"/":{"docs":{},"a":{"docs":{},"n":{"docs":{},"n":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{"docs/guides/advanced/DynamicRouting.html":{"ref":"docs/guides/advanced/DynamicRouting.html","tf":0.008547008547008548}}}}}}}},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"g":{"docs":{},"n":{"docs":{"docs/guides/advanced/DynamicRouting.html":{"ref":"docs/guides/advanced/DynamicRouting.html","tf":0.008547008547008548}}}}}}}},"g":{"docs":{},"r":{"docs":{},"a":{"docs":{},"d":{"docs":{"docs/guides/advanced/DynamicRouting.html":{"ref":"docs/guides/advanced/DynamicRouting.html","tf":0.008547008547008548}}}}}}}},"h":{"docs":{},"o":{"docs":{},"o":{"docs":{},"k":{"docs":{"docs/Glossary.html":{"ref":"docs/Glossary.html","tf":0.008733624454148471}}}}},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"l":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0058445353594389245}}}}}}}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.003771551724137931},"docs/guides/advanced/ServerRendering.html":{"ref":"docs/guides/advanced/ServerRendering.html","tf":0.03937007874015748}}}}}}}}}}}}}},"o":{"docs":{},"t":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462}}}}},"u":{"docs":{},"n":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0032144944476914087}}}}},"s":{"docs":{},"a":{"docs":{},"v":{"docs":{},"e":{"docs":{"index.html":{"ref":"index.html","tf":0.005012531328320802},"docs/guides/advanced/ConfirmingNavigation.html":{"ref":"docs/guides/advanced/ConfirmingNavigation.html","tf":0.02926829268292683}}}},"m":{"docs":{},"e":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0017533606078316774}}}}},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"index.html":{"ref":"index.html","tf":0.005012531328320802},"docs/guides/basics/Histories.html":{"ref":"docs/guides/basics/Histories.html","tf":0.007537688442211055}}}}},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0016163793103448276},"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0014611338398597311}},"b":{"docs":{},"e":{"docs":{},"h":{"docs":{},"a":{"docs":{},"v":{"docs":{},"i":{"docs":{},"o":{"docs":{},"r":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}},"=":{"docs":{},"\"":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"t":{"docs":{},"o":{"docs":{},"t":{"docs":{},"o":{"docs":{},"p":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"o":{"docs":{},"t":{"docs":{},"o":{"docs":{},"p":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0014611338398597311}}}}}}}}}}},"e":{"docs":{},"n":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{},"o":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0011689070718877848}}}}}}}}},"e":{"docs":{},"t":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{"index.html":{"ref":"index.html","tf":0.002506265664160401},"docs/Introduction.html":{"ref":"docs/Introduction.html","tf":0.003194888178913738},"docs/Troubleshooting.html":{"ref":"docs/Troubleshooting.html","tf":0.02127659574468085},"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462},"docs/guides/advanced/ComponentLifecycle.html":{"ref":"docs/guides/advanced/ComponentLifecycle.html","tf":0.003194888178913738}}}}}}},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0005387931034482759},"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462},"docs/guides/basics/Histories.html":{"ref":"docs/guides/basics/Histories.html","tf":0.002512562814070352}}}}}}},"a":{"docs":{},"r":{"docs":{},"c":{"docs":{},"h":{"docs":{"docs/Glossary.html":{"ref":"docs/Glossary.html","tf":0.002911208151382824}},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"m":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0023378141437755697}}}}}}}}}},"g":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0008766803039158387}}}}}}},"n":{"docs":{},"d":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0008766803039158387},"docs/guides/advanced/ServerRendering.html":{"ref":"docs/guides/advanced/ServerRendering.html","tf":0.023622047244094488}},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{"docs/guides/basics/Histories.html":{"ref":"docs/guides/basics/Histories.html","tf":0.002512562814070352}}}}}},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462}}}}}}}}},"r":{"docs":{},"v":{"docs":{"docs/guides/advanced/ServerRendering.html":{"ref":"docs/guides/advanced/ServerRendering.html","tf":0.007874015748031496}},"e":{"docs":{},"r":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462},"docs/guides/basics/Histories.html":{"ref":"docs/guides/basics/Histories.html","tf":0.007537688442211055}}},"(":{"docs":{},"(":{"docs":{},"r":{"docs":{},"e":{"docs":{},"q":{"docs":{"docs/guides/advanced/ServerRendering.html":{"ref":"docs/guides/advanced/ServerRendering.html","tf":0.015748031496062992}}}}}}}}}}},"r":{"docs":{},"c":{"docs":{},"=":{"docs":{},"\"":{"docs":{},"h":{"docs":{},"t":{"docs":{},"t":{"docs":{},"p":{"docs":{},"s":{"docs":{},":":{"docs":{},"/":{"docs":{},"/":{"docs":{},"u":{"docs":{},"n":{"docs":{},"p":{"docs":{},"k":{"docs":{},"g":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"index.html":{"ref":"index.html","tf":0.005012531328320802}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{"index.html":{"ref":"index.html","tf":0.012531328320802004}}}},"t":{"docs":{"docs/Introduction.html":{"ref":"docs/Introduction.html","tf":0.003194888178913738}},"e":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.013469827586206896},"docs/Glossary.html":{"ref":"docs/Glossary.html","tf":0.026200873362445413},"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.008182349503214495},"docs/guides/basics/Histories.html":{"ref":"docs/guides/basics/Histories.html","tf":0.010050251256281407}},".":{"docs":{},"f":{"docs":{},"r":{"docs":{},"o":{"docs":{},"m":{"docs":{},"d":{"docs":{},"a":{"docs":{},"s":{"docs":{},"h":{"docs":{},"b":{"docs":{},"o":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0010775862068965517}}}}}}}}}}}}}}}},",":{"docs":{},"一":{"docs":{},"个":{"docs":{},"函":{"docs":{},"数":{"docs":{},"重":{"docs":{},"定":{"docs":{},"向":{"docs":{},"到":{"docs":{},"另":{"docs":{},"一":{"docs":{},"个":{"docs":{},"路":{"docs":{},"径":{"docs":{},"。":{"docs":{},"t":{"docs":{},"h":{"docs":{},"i":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0005387931034482759}}}}}}}}}}}}}}}}}}}},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"docs/guides/basics/IndexRoutes.html":{"ref":"docs/guides/basics/IndexRoutes.html","tf":0.037037037037037035}}}}}}},"i":{"docs":{},"c":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0029222676797194622},"docs/guides/basics/Histories.html":{"ref":"docs/guides/basics/Histories.html","tf":0.002512562814070352}}}}},"r":{"docs":{},"t":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0008766803039158387},"docs/guides/basics/Histories.html":{"ref":"docs/guides/basics/Histories.html","tf":0.007537688442211055}}}}},"o":{"docs":{},"p":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462}},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"a":{"docs":{},"g":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0005387931034482759}}}}}}}}},"r":{"docs":{},"e":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0005387931034482759},"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0008766803039158387}}},"a":{"docs":{},"g":{"docs":{"docs/guides/basics/Histories.html":{"ref":"docs/guides/basics/Histories.html","tf":0.002512562814070352}}}}}},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{"docs/Glossary.html":{"ref":"docs/Glossary.html","tf":0.021834061135371178}},"i":{"docs":{},"f":{"docs":{},"y":{"docs":{},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0005387931034482759}}},"y":{"docs":{},"(":{"docs":{},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"y":{"docs":{},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0010775862068965517}}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}}}}}},"y":{"docs":{},"l":{"docs":{},"e":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0008766803039158387}},"=":{"docs":{},"{":{"docs":{},"{":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"o":{"docs":{},"r":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0010775862068965517}}}}}}}}}}}}},"i":{"docs":{},"l":{"docs":{},"l":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0008766803039158387}}}}},"u":{"docs":{},"f":{"docs":{},"f":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0008766803039158387}}}}}},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}},"b":{"docs":{},"a":{"docs":{},"r":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.008620689655172414}},"=":{"docs":{},"{":{"docs":{},"<":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"b":{"docs":{},"a":{"docs":{},"r":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0016163793103448276}}}}}}}}}}}}}}}}}}}}}},"g":{"docs":{},"n":{"docs":{},"a":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0021551724137931034},"docs/Glossary.html":{"ref":"docs/Glossary.html","tf":0.002911208151382824}}}}}}}},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462}}}}},"i":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0008766803039158387}}}}}},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{},"p":{"docs":{"docs/guides/basics/RouteConfiguration.html":{"ref":"docs/guides/basics/RouteConfiguration.html","tf":0.0014285714285714286}}}}}}}},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"/":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"h":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0016163793103448276},"docs/guides/advanced/NavigatingOutsideOfComponents.html":{"ref":"docs/guides/advanced/NavigatingOutsideOfComponents.html","tf":0.013888888888888888}}}}}},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0016163793103448276}},"e":{"docs":{},"/":{"docs":{},":":{"docs":{},"i":{"docs":{},"d":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}}}}}}}}}},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},"r":{"docs":{},"a":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}},"=":{"docs":{},"{":{"docs":{},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{},"h":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}}}}}}}}}}}}}}}}},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"l":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0011689070718877848}}}}}}},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"m":{"docs":{},"i":{"docs":{},"s":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0017533606078316774}},"e":{"docs":{},"(":{"docs":{},")":{"docs":{},".":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"n":{"docs":{},"(":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"b":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"h":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.009935710111046173}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0011689070718877848}},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},".":{"docs":{},"i":{"docs":{},"s":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}}}}}}}}}}}}}}}}},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{"docs/guides/advanced/NavigatingOutsideOfComponents.html":{"ref":"docs/guides/advanced/NavigatingOutsideOfComponents.html","tf":0.041666666666666664}},"e":{"docs":{},"/":{"docs":{},"e":{"docs":{},"l":{"docs":{},"s":{"docs":{},"e":{"docs":{},"/":{"2":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462}}},"docs":{},":":{"docs":{},"i":{"docs":{},"d":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462}}}}}}}}}}}}}}}}}},"l":{"docs":{},"u":{"docs":{},"t":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462}}}}},"o":{"docs":{},"n":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0008766803039158387}}}},"r":{"docs":{},"r":{"docs":{},"i":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462}}}}}},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"t":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0021551724137931034}}}},"a":{"docs":{},"t":{"docs":{"docs/Glossary.html":{"ref":"docs/Glossary.html","tf":0.004366812227074236},"docs/guides/basics/RouteMatching.html":{"ref":"docs/guides/basics/RouteMatching.html","tf":0.046153846153846156}}}}},"e":{"docs":{},"c":{"docs":{},"i":{"docs":{},"f":{"docs":{},"i":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462}}}}}}}},"u":{"docs":{},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"docs/Introduction.html":{"ref":"docs/Introduction.html","tf":0.003194888178913738}}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"docs/Introduction.html":{"ref":"docs/Introduction.html","tf":0.003194888178913738}}}},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0008766803039158387}}}}}}}},"p":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462}}}}}}},"r":{"docs":{},"e":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0011689070718877848},"docs/guides/advanced/ConfirmingNavigation.html":{"ref":"docs/guides/advanced/ConfirmingNavigation.html","tf":0.02926829268292683}}}}},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"docs/Introduction.html":{"ref":"docs/Introduction.html","tf":0.004792332268370607}}}}}}},"h":{"docs":{},"o":{"docs":{},"w":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462}},"b":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{},"t":{"docs":{},"o":{"docs":{},"n":{"docs":{"docs/Troubleshooting.html":{"ref":"docs/Troubleshooting.html","tf":0.0851063829787234}}}}}}}}}}}}}}},"k":{"docs":{},"i":{"docs":{},"p":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0014611338398597311}}}}},"y":{"docs":{},"n":{"docs":{},"c":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462}}},"t":{"docs":{},"a":{"docs":{},"x":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0008766803039158387}}}}}}}},"t":{"docs":{},"h":{"docs":{},"i":{"docs":{},"s":{"docs":{},".":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.004310344827586207},"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.003798947983635301}},"s":{"docs":{},".":{"docs":{},"c":{"docs":{},"h":{"docs":{},"i":{"docs":{},"l":{"docs":{},"d":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{"index.html":{"ref":"index.html","tf":0.005012531328320802},"docs/API.html":{"ref":"docs/API.html","tf":0.010775862068965518},"docs/Glossary.html":{"ref":"docs/Glossary.html","tf":0.002911208151382824},"docs/Introduction.html":{"ref":"docs/Introduction.html","tf":0.011182108626198083},"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0011689070718877848},"docs/guides/basics/IndexRoutes.html":{"ref":"docs/guides/basics/IndexRoutes.html","tf":0.046296296296296294},"docs/guides/basics/RouteConfiguration.html":{"ref":"docs/guides/basics/RouteConfiguration.html","tf":0.011428571428571429}}}}}}}}}},"h":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0026939655172413795}}},"y":{"docs":{},".":{"docs":{},"p":{"docs":{},"u":{"docs":{},"s":{"docs":{},"h":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"n":{"docs":{},"u":{"docs":{},"l":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0010775862068965517}}}}},"s":{"docs":{},"t":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0010775862068965517}}}}}}}}}}}}}},"i":{"docs":{},"s":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}}}}}}}}}}}}},"m":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0010775862068965517}}}}}},"p":{"docs":{},"a":{"docs":{},"r":{"docs":{},"a":{"docs":{},"m":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0021551724137931034},"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0011689070718877848}},"s":{"docs":{},".":{"docs":{},"i":{"docs":{},"d":{"docs":{"docs/Introduction.html":{"ref":"docs/Introduction.html","tf":0.003194888178913738},"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}},"}":{"docs":{},"<":{"docs":{},"/":{"docs":{},"h":{"3":{"docs":{"docs/guides/basics/RouteConfiguration.html":{"ref":"docs/guides/basics/RouteConfiguration.html","tf":0.002857142857142857}}},"docs":{}}}}}},"n":{"docs":{},"v":{"docs":{},"o":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},"i":{"docs":{},"d":{"docs":{"docs/guides/advanced/ComponentLifecycle.html":{"ref":"docs/guides/advanced/ComponentLifecycle.html","tf":0.006389776357827476}}}}}}}}}}},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}}},"s":{"docs":{},"p":{"docs":{},"l":{"docs":{},"a":{"docs":{},"t":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}}}}}}}}}}}},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0010775862068965517},"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}},"y":{"docs":{},".":{"docs":{},"s":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{},"c":{"docs":{},"h":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"m":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}}}}}}}}},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{},"h":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}}}}}}}}}}}},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{},"e":{"docs":{},"p":{"docs":{},"a":{"docs":{},"r":{"docs":{},"a":{"docs":{},"m":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0010775862068965517}}}}}}}}}}}},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"b":{"docs":{},"a":{"docs":{},"r":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0010775862068965517}}}}}}}}},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{"docs/Troubleshooting.html":{"ref":"docs/Troubleshooting.html","tf":0.0425531914893617},"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"y":{"docs":{},".":{"docs":{},"b":{"docs":{},"a":{"docs":{},"r":{"docs":{"docs/Introduction.html":{"ref":"docs/Introduction.html","tf":0.003194888178913738}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0014611338398597311}},"e":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"l":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0035067212156633548}}}}}}}}}}}}}}}}}},"f":{"docs":{},"o":{"docs":{},"o":{"docs":{},"}":{"docs":{},"<":{"docs":{},"/":{"docs":{},"d":{"docs":{},"i":{"docs":{},"v":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}}}}}}}}}},"[":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0010775862068965517}}}}}},"}":{"docs":{},"/":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"l":{"docs":{},"i":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0010775862068965517}}}}}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"s":{"docs":{},"t":{"docs":{"index.html":{"ref":"index.html","tf":0.005012531328320802},"docs/Introduction.html":{"ref":"docs/Introduction.html","tf":0.006389776357827476},"docs/Troubleshooting.html":{"ref":"docs/Troubleshooting.html","tf":0.0425531914893617},"docs/guides/advanced/ComponentLifecycle.html":{"ref":"docs/guides/advanced/ComponentLifecycle.html","tf":0.006389776357827476}},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"t":{"docs":{},"h":{"docs":{},"i":{"docs":{},"s":{"docs":{},".":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"n":{"docs":{},"e":{"docs":{},"w":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},".":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},".":{"docs":{},"m":{"docs":{},"a":{"docs":{},"p":{"docs":{},"(":{"docs":{},"u":{"docs":{},"s":{"docs":{"index.html":{"ref":"index.html","tf":0.005012531328320802}}}}}}}}}}}}}},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"docs/Introduction.html":{"ref":"docs/Introduction.html","tf":0.006389776357827476}}}}}},"i":{"docs":{},"s":{"docs":{},"s":{"docs":{},"a":{"docs":{},"v":{"docs":{"docs/guides/advanced/ConfirmingNavigation.html":{"ref":"docs/guides/advanced/ConfirmingNavigation.html","tf":0.01951219512195122}}}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0023378141437755697}},".":{"docs":{},"h":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"y":{"docs":{},".":{"docs":{},"p":{"docs":{},"u":{"docs":{},"s":{"docs":{},"h":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"n":{"docs":{},"u":{"docs":{},"l":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0010775862068965517}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0010775862068965517},"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924},"docs/guides/advanced/NavigatingOutsideOfComponents.html":{"ref":"docs/guides/advanced/NavigatingOutsideOfComponents.html","tf":0.027777777777777776}}}}}},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}}}}}}}}}}},"h":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"y":{"docs":{},".":{"docs":{},"g":{"docs":{},"o":{"docs":{},"b":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"(":{"docs":{},")":{"docs":{},"}":{"docs":{},">":{"docs":{},"g":{"docs":{},"o":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0010775862068965517}}}}}}}}}}}}}},"i":{"docs":{},"s":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"(":{"docs":{},"t":{"docs":{},"h":{"docs":{},"i":{"docs":{},"s":{"docs":{},".":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"s":{"docs":{},".":{"docs":{},"t":{"docs":{},"o":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0010775862068965517}}}}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"u":{"docs":{},"s":{"docs":{},"h":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"n":{"docs":{},"u":{"docs":{},"l":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0010775862068965517},"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"p":{"docs":{},"l":{"docs":{},"a":{"docs":{},"c":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"n":{"docs":{},"u":{"docs":{},"l":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0010775862068965517},"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0008766803039158387}}}}}}}}}}}}}}}}}}}}}}}}}},"f":{"docs":{},"o":{"docs":{},"o":{"docs":{},"}":{"docs":{},"<":{"docs":{},"/":{"docs":{},"d":{"docs":{},"i":{"docs":{},"v":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}}}}}}}},"e":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"i":{"docs":{},"n":{"docs":{},"v":{"docs":{},"o":{"docs":{},"i":{"docs":{},"c":{"docs":{"docs/guides/advanced/ComponentLifecycle.html":{"ref":"docs/guides/advanced/ComponentLifecycle.html","tf":0.012779552715654952}}}}}}}}}}}}},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"p":{"docs":{},"a":{"docs":{},"r":{"docs":{},"a":{"docs":{},"m":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}},"s":{"docs":{},"(":{"docs":{},")":{"docs":{},".":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}}}}}}}}}}}},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}}}}},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}}}}}}}}}},"c":{"docs":{},"u":{"docs":{},"r":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"h":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0011689070718877848}}}}}}}}}}}}},"p":{"docs":{},"a":{"docs":{},"r":{"docs":{},"a":{"docs":{},"m":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}},"s":{"docs":{},"(":{"docs":{},")":{"docs":{},".":{"docs":{},"i":{"docs":{},"d":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0011689070718877848}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0011689070718877848}}}}}}}}}}}},"t":{"docs":{},"h":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0017533606078316774}}}}}},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"y":{"docs":{},"(":{"docs":{},")":{"docs":{},".":{"docs":{},"s":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{},"c":{"docs":{},"h":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"m":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}}}}}}}}},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{},"h":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}}}}}}}}}}}}}},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"(":{"docs":{},")":{"docs":{},"[":{"docs":{},"c":{"docs":{},"h":{"docs":{},"i":{"docs":{},"l":{"docs":{},"d":{"docs":{},"d":{"docs":{},"e":{"docs":{},"p":{"docs":{},"t":{"docs":{},"h":{"docs":{},"]":{"docs":{},".":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}}}},"o":{"docs":{},"b":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}}}}}},"i":{"docs":{},"s":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"(":{"docs":{},"t":{"docs":{},"o":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}}}}}}}}}},"g":{"docs":{},"n":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{},"f":{"docs":{},"e":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"docs/guides/advanced/ComponentLifecycle.html":{"ref":"docs/guides/advanced/ComponentLifecycle.html","tf":0.012779552715654952}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"p":{"docs":{},"l":{"docs":{},"a":{"docs":{},"c":{"docs":{},"e":{"docs":{},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"(":{"docs":{},"'":{"docs":{},"/":{"docs":{},"u":{"docs":{},"s":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0008766803039158387}}}}},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{},"h":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}}}}}}}}}}}}}}}}},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"docs/guides/advanced/ComponentLifecycle.html":{"ref":"docs/guides/advanced/ComponentLifecycle.html","tf":0.006389776357827476}}}}}}}}},"t":{"docs":{},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"s":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"o":{"docs":{},"(":{"docs":{},"'":{"docs":{},"/":{"docs":{},"u":{"docs":{},"s":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}}},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{},"h":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}}}}}}},"t":{"docs":{},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"s":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"h":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"g":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0011689070718877848}}},"k":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462}}}}},"e":{"docs":{},"/":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"h":{"docs":{"docs/Glossary.html":{"ref":"docs/Glossary.html","tf":0.001455604075691412}}}}}}},"=":{"docs":{},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{"docs/Glossary.html":{"ref":"docs/Glossary.html","tf":0.001455604075691412}}}}}}}}},"a":{"docs":{},"n":{"docs":{},"k":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462}}}},"t":{"docs":{},"'":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0008766803039158387}}}}},"o":{"docs":{},"s":{"docs":{},"e":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462}}}},"u":{"docs":{},"g":{"docs":{},"h":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}}}},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}}}},"o":{"docs":{},"=":{"docs":{},"{":{"docs":{},"`":{"docs":{},"/":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"/":{"docs":{},"$":{"docs":{},"{":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{},"i":{"docs":{},"d":{"docs":{},"}":{"docs":{},"`":{"docs":{},"}":{"docs":{},">":{"docs":{},"{":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"}":{"docs":{},"<":{"docs":{},"/":{"docs":{},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{},"k":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"l":{"docs":{},"i":{"docs":{"index.html":{"ref":"index.html","tf":0.005012531328320802}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"/":{"docs":{},"$":{"docs":{},"{":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{},"i":{"docs":{},"d":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0021551724137931034}},"}":{"docs":{},"`":{"docs":{},"}":{"docs":{},">":{"docs":{},"m":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"u":{"docs":{},"s":{"docs":{},"z":{"docs":{},"<":{"docs":{},"/":{"docs":{},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{},"k":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"\"":{"docs":{},"/":{"docs":{},"p":{"docs":{},"i":{"docs":{},"c":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{},"e":{"docs":{},"/":{"1":{"2":{"3":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0010775862068965517}}},"docs":{}},"docs":{}},"docs":{}}}}}}}}},"u":{"docs":{},"s":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0010775862068965517}}}},"a":{"docs":{},"b":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}},"\"":{"docs":{},">":{"docs":{},"a":{"docs":{},"b":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{},"<":{"docs":{},"/":{"docs":{},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{},"k":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"l":{"docs":{},"i":{"docs":{"docs/Introduction.html":{"ref":"docs/Introduction.html","tf":0.003194888178913738},"docs/guides/basics/RouteConfiguration.html":{"ref":"docs/guides/basics/RouteConfiguration.html","tf":0.002857142857142857}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"b":{"docs":{},"o":{"docs":{},"x":{"docs":{},"\"":{"docs":{},">":{"docs":{},"i":{"docs":{},"n":{"docs":{},"b":{"docs":{},"o":{"docs":{},"x":{"docs":{},"<":{"docs":{},"/":{"docs":{},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{},"k":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"l":{"docs":{},"i":{"docs":{"docs/Introduction.html":{"ref":"docs/Introduction.html","tf":0.003194888178913738},"docs/guides/basics/RouteConfiguration.html":{"ref":"docs/guides/basics/RouteConfiguration.html","tf":0.002857142857142857}}}}}}}}}}}}}}}}}}}}}}}}},"\"":{"docs":{},">":{"docs":{},"h":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"<":{"docs":{},"/":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{},"k":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924},"docs/guides/basics/IndexRoutes.html":{"ref":"docs/guides/basics/IndexRoutes.html","tf":0.018518518518518517}}}}}}}}}}},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{},"k":{"docs":{"docs/guides/basics/IndexRoutes.html":{"ref":"docs/guides/basics/IndexRoutes.html","tf":0.018518518518518517}}}}}}}}}}}}}},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"/":{"docs":{},"e":{"docs":{},"l":{"docs":{},"s":{"docs":{},"e":{"docs":{},"/":{"2":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}},"docs":{}}}}}}}}}}}}}}}},"m":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"s":{"docs":{},"/":{"docs":{},":":{"docs":{},"i":{"docs":{},"d":{"docs":{"docs/guides/basics/RouteConfiguration.html":{"ref":"docs/guides/basics/RouteConfiguration.html","tf":0.002857142857142857}}}}}}}}}}}}}}},"a":{"docs":{},"b":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{},"/":{"docs":{},":":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{},"d":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0010775862068965517}}}}}}}}}},"\"":{"docs":{},">":{"docs":{},"a":{"docs":{},"b":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{},"<":{"docs":{},"/":{"docs":{},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{},"k":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"a":{"docs":{},"s":{"docs":{},"h":{"docs":{},"b":{"docs":{},"o":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0010775862068965517}}}}}}}}}}},"h":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"\"":{"docs":{},">":{"docs":{},"h":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"<":{"docs":{},"/":{"docs":{},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{},"k":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}}}}}}}}}}}}}}}},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"/":{"docs":{},"e":{"docs":{},"l":{"docs":{},"s":{"docs":{},"e":{"docs":{},"/":{"docs":{},":":{"docs":{},"i":{"docs":{},"d":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"s":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0017533606078316774}}}}}},"d":{"docs":{},"o":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0010775862068965517}}}},"u":{"docs":{},"c":{"docs":{},"h":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0016163793103448276}}}}},"m":{"docs":{},"o":{"docs":{},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{"docs/Introduction.html":{"ref":"docs/Introduction.html","tf":0.006389776357827476}}}}}}}},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462}}}}}},"a":{"docs":{},"b":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0026939655172413795}}}},"i":{"docs":{},"t":{"docs":{},"l":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0005387931034482759}},"e":{"docs":{},",":{"docs":{},"i":{"docs":{},"d":{"docs":{},",":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0005387931034482759}}}}}}}}}}}}}}}}},"c":{"docs":{},"k":{"docs":{},"e":{"docs":{},"t":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462}}}}}},"m":{"docs":{},"e":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}}},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"s":{"docs":{},"i":{"docs":{},"t":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.005552308591466978}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"o":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0016163793103448276},"docs/Glossary.html":{"ref":"docs/Glossary.html","tf":0.002911208151382824},"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0017533606078316774}}}},".":{"docs":{},"r":{"docs":{},"e":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0017533606078316774}}}}}}},"w":{"docs":{},"a":{"docs":{},"i":{"docs":{},"t":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}},"(":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"m":{"docs":{},"i":{"docs":{},"s":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}}}}}},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"m":{"docs":{},"i":{"docs":{},"s":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0011689070718877848}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462}}}}}}}},"i":{"docs":{},"n":{"docs":{"docs/guides/advanced/DynamicRouting.html":{"ref":"docs/guides/advanced/DynamicRouting.html","tf":0.017094017094017096}}}}},"u":{"docs":{},"e":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.003771551724137931},"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0008766803039158387},"docs/guides/advanced/ComponentLifecycle.html":{"ref":"docs/guides/advanced/ComponentLifecycle.html","tf":0.009584664536741214}}}},"e":{"docs":{},"e":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}},"i":{"docs":{},"g":{"docs":{},"g":{"docs":{},"e":{"docs":{},"r":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0017533606078316774}}}}}}},"y":{"docs":{},"_":{"docs":{},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{"docs/guides/basics/Histories.html":{"ref":"docs/guides/basics/Histories.html","tf":0.01256281407035176}}}}}}}},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{"docs/Glossary.html":{"ref":"docs/Glossary.html","tf":0.06404657933042213}}},"i":{"docs":{},"c":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0011689070718877848}}}}}},"p":{"docs":{"docs/Introduction.html":{"ref":"docs/Introduction.html","tf":0.009584664536741214}}},"e":{"docs":{},"c":{"docs":{},"h":{"docs":{},"n":{"docs":{},"i":{"docs":{},"q":{"docs":{},"u":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0017533606078316774}}}}}}}}},"u":{"docs":{},"r":{"docs":{},"n":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462}}}}},"w":{"docs":{},"o":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462}}},"i":{"docs":{},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"docs/guides/advanced/DynamicRouting.html":{"ref":"docs/guides/advanced/DynamicRouting.html","tf":0.017094017094017096}}}}}}}}},"u":{"docs":{},"i":{"docs":{"index.html":{"ref":"index.html","tf":0.002506265664160401},"docs/API.html":{"ref":"docs/API.html","tf":0.0005387931034482759},"docs/Glossary.html":{"ref":"docs/Glossary.html","tf":0.008733624454148471},"docs/Introduction.html":{"ref":"docs/Introduction.html","tf":0.01597444089456869},"docs/guides/basics/IndexRoutes.html":{"ref":"docs/guides/basics/IndexRoutes.html","tf":0.018518518518518517},"docs/guides/basics/RouteConfiguration.html":{"ref":"docs/guides/basics/RouteConfiguration.html","tf":0.0014285714285714286}}},"l":{"docs":{"index.html":{"ref":"index.html","tf":0.010025062656641603},"docs/Introduction.html":{"ref":"docs/Introduction.html","tf":0.012779552715654952},"docs/guides/basics/RouteConfiguration.html":{"ref":"docs/guides/basics/RouteConfiguration.html","tf":0.005714285714285714}}},"m":{"docs":{},"d":{"docs":{"index.html":{"ref":"index.html","tf":0.002506265664160401}}}},"n":{"docs":{},"p":{"docs":{},"k":{"docs":{},"g":{"docs":{"index.html":{"ref":"index.html","tf":0.005012531328320802}}}}},"d":{"docs":{},"e":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.010775862068965518},"docs/guides/basics/IndexRoutes.html":{"ref":"docs/guides/basics/IndexRoutes.html","tf":0.009259259259259259},"docs/guides/basics/RouteConfiguration.html":{"ref":"docs/guides/basics/RouteConfiguration.html","tf":0.002857142857142857}}}}},"r":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462}}}},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462}}}}}},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{"docs/Introduction.html":{"ref":"docs/Introduction.html","tf":0.003194888178913738}}}}}},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}}}},"t":{"docs":{},"i":{"docs":{},"l":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462}}}}}},"r":{"docs":{},"l":{"docs":{"index.html":{"ref":"index.html","tf":0.012531328320802004},"docs/API.html":{"ref":"docs/API.html","tf":0.012392241379310345},"docs/Glossary.html":{"ref":"docs/Glossary.html","tf":0.03056768558951965},"docs/Introduction.html":{"ref":"docs/Introduction.html","tf":0.012779552715654952},"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462},"docs/guides/advanced/ComponentLifecycle.html":{"ref":"docs/guides/advanced/ComponentLifecycle.html","tf":0.009584664536741214},"docs/guides/advanced/DynamicRouting.html":{"ref":"docs/guides/advanced/DynamicRouting.html","tf":0.017094017094017096},"docs/guides/advanced/ServerRendering.html":{"ref":"docs/guides/advanced/ServerRendering.html","tf":0.023622047244094488},"docs/guides/basics/Histories.html":{"ref":"docs/guides/basics/Histories.html","tf":0.02512562814070352},"docs/guides/basics/IndexRoutes.html":{"ref":"docs/guides/basics/IndexRoutes.html","tf":0.009259259259259259},"docs/guides/basics/RouteConfiguration.html":{"ref":"docs/guides/basics/RouteConfiguration.html","tf":0.04},"docs/guides/basics/RouteMatching.html":{"ref":"docs/guides/basics/RouteMatching.html","tf":0.12307692307692308}},"。":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"n":{"docs":{"docs/Glossary.html":{"ref":"docs/Glossary.html","tf":0.001455604075691412}}}}}}}}}},"中":{"docs":{},",":{"docs":{},"/":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"/":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"h":{"docs":{"docs/Glossary.html":{"ref":"docs/Glossary.html","tf":0.001455604075691412}}}}}}}}}}},"?":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"=":{"docs":{},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{"docs/Glossary.html":{"ref":"docs/Glossary.html","tf":0.001455604075691412}}}}}}}}}}}}}},"变":{"docs":{},"化":{"docs":{},"时":{"docs":{},",":{"docs":{},"新":{"docs":{},"的":{"docs":{},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"将":{"docs":{},"会":{"docs":{},"产":{"docs":{},"生":{"docs":{},"。":{"docs":{},"你":{"docs":{},"可":{"docs":{},"以":{"docs":{},"在":{"docs":{},"h":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{"docs/Glossary.html":{"ref":"docs/Glossary.html","tf":0.001455604075691412}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},",":{"docs":{},"创":{"docs":{},"建":{"docs":{},"一":{"docs":{},"个":{"docs":{},"像":{"docs":{},"e":{"docs":{},"x":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"/":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"h":{"docs":{"docs/guides/basics/Histories.html":{"ref":"docs/guides/basics/Histories.html","tf":0.002512562814070352}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{"docs/guides/basics/Histories.html":{"ref":"docs/guides/basics/Histories.html","tf":0.005025125628140704}}}},"s":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.009351256575102279},"docs/guides/basics/Histories.html":{"ref":"docs/guides/basics/Histories.html","tf":0.002512562814070352}},"e":{"docs":{},"r":{"docs":{"index.html":{"ref":"index.html","tf":0.017543859649122806},"docs/API.html":{"ref":"docs/API.html","tf":0.01293103448275862},"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0058445353594389245}},"/":{"docs":{},":":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{},"d":{"docs":{"index.html":{"ref":"index.html","tf":0.002506265664160401},"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}}}}}}}},"i":{"docs":{},"d":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0021551724137931034},"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0014611338398597311}},"=":{"docs":{},"\"":{"1":{"2":{"3":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}},"docs":{}},"docs":{}},"docs":{}}}}},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.003232758620689655}},"e":{"docs":{},"s":{"docs":{},"(":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"h":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0010775862068965517}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"/":{"1":{"2":{"3":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.005387931034482759},"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}},"/":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{},"f":{"docs":{},"o":{"docs":{},"l":{"docs":{},"i":{"docs":{},"o":{"docs":{},"s":{"docs":{},"/":{"3":{"4":{"5":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0010775862068965517}}},"docs":{}},"docs":{}},"docs":{}}}}}}}}}}}}}},"docs":{}},"docs":{}},"4":{"5":{"6":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}},"docs":{}},"docs":{}},"docs":{},":":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{},"d":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0026939655172413795}}}}}}}}},"$":{"docs":{},"{":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{},"i":{"docs":{},"d":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0014611338398597311}}}}}}}}}}}},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"b":{"docs":{},"a":{"docs":{},"r":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.007004310344827586}}}}}}}}}},".":{"docs":{},"i":{"docs":{},"d":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0014611338398597311}},"}":{"docs":{},"}":{"docs":{},">":{"docs":{},"m":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"u":{"docs":{},"s":{"docs":{},"z":{"docs":{},"<":{"docs":{},"/":{"docs":{},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{},"k":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}}}}}}}}}}}}}}}}}}}},"b":{"docs":{},"e":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},"u":{"docs":{},"n":{"docs":{},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0010775862068965517}}}}}}}}}}}}}}}},"t":{"docs":{},"i":{"docs":{},"l":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0026939655172413795}}}}},"p":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462}},"e":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}}}}}}}}}}}},"g":{"docs":{},"r":{"docs":{},"a":{"docs":{},"d":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.002630040911747516}}}}}}}},"v":{"0":{"docs":{},".":{"1":{"0":{"docs":{},".":{"docs":{},"x":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.002630040911747516}}}}},"1":{"docs":{},".":{"docs":{},"x":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.002630040911747516}}}}},"3":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0035067212156633548}},".":{"docs":{},"x":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.010520163646990065}}}}},"docs":{}},"docs":{}}},"1":{"docs":{},".":{"0":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.014903565166569257}}},"docs":{}}},"docs":{},"a":{"docs":{},"r":{"docs":{"index.html":{"ref":"index.html","tf":0.03007518796992481},"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.056107539450613676}}},"l":{"docs":{},"i":{"docs":{},"d":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462}}}},"u":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462}}}}},"o":{"docs":{},"i":{"docs":{},"d":{"docs":{"docs/Glossary.html":{"ref":"docs/Glossary.html","tf":0.03056768558951965}}}}},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462}}}}}}}},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0014611338398597311},"docs/guides/advanced/DynamicRouting.html":{"ref":"docs/guides/advanced/DynamicRouting.html","tf":0.008547008547008548},"docs/guides/basics/RouteMatching.html":{"ref":"docs/guides/basics/RouteMatching.html","tf":0.015384615384615385}}}}}},"w":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0008766803039158387}},"a":{"docs":{},"r":{"docs":{},"n":{"docs":{"index.html":{"ref":"index.html","tf":0.005012531328320802},"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}},"i":{"docs":{},"t":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0008766803039158387}}}},"n":{"docs":{},"t":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462},"docs/guides/advanced/ConfirmingNavigation.html":{"ref":"docs/guides/advanced/ConfirmingNavigation.html","tf":0.02926829268292683}}}},"y":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}},"e":{"docs":{},"b":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0005387931034482759},"docs/Glossary.html":{"ref":"docs/Glossary.html","tf":0.005822416302765648},"docs/guides/basics/Histories.html":{"ref":"docs/guides/basics/Histories.html","tf":0.002512562814070352}},"p":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{"index.html":{"ref":"index.html","tf":0.005012531328320802},"docs/guides/advanced/DynamicRouting.html":{"ref":"docs/guides/advanced/DynamicRouting.html","tf":0.02564102564102564}}}}}}},"l":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{"docs/Introduction.html":{"ref":"docs/Introduction.html","tf":0.004792332268370607},"docs/guides/basics/RouteConfiguration.html":{"ref":"docs/guides/basics/RouteConfiguration.html","tf":0.004285714285714286}}}}}},"'":{"docs":{},"v":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462}}}},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"'":{"docs":{},"t":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462}}}}}}}},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"o":{"docs":{},"w":{"docs":{},".":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"index.html":{"ref":"index.html","tf":0.005012531328320802}}}}}}}}}}},"h":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{"docs/Glossary.html":{"ref":"docs/Glossary.html","tf":0.002911208151382824},"docs/guides/basics/Histories.html":{"ref":"docs/guides/basics/Histories.html","tf":0.005025125628140704}}}}}}}}},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{},"s":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{},"c":{"docs":{},"h":{"docs":{"docs/Glossary.html":{"ref":"docs/Glossary.html","tf":0.002911208151382824}}}}}}}}}}}}}}},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"h":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"docs/Glossary.html":{"ref":"docs/Glossary.html","tf":0.002911208151382824}}}}}}}}},"h":{"docs":{},"a":{"docs":{},"s":{"docs":{},"h":{"docs":{"docs/guides/basics/Histories.html":{"ref":"docs/guides/basics/Histories.html","tf":0.005025125628140704}},".":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"(":{"1":{"docs":{"docs/Introduction.html":{"ref":"docs/Introduction.html","tf":0.006389776357827476}}},"docs":{}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"d":{"docs":{},"d":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},"(":{"docs":{},"'":{"docs":{},"h":{"docs":{},"a":{"docs":{},"s":{"docs":{},"h":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{"docs/Introduction.html":{"ref":"docs/Introduction.html","tf":0.003194888178913738}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0010775862068965517},"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462}}}}}}},"l":{"docs":{},"l":{"docs":{},"t":{"docs":{},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"s":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"f":{"docs":{},"r":{"docs":{},"o":{"docs":{},"m":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0011689070718877848}}}}}},"t":{"docs":{},"o":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0035067212156633548}}}}}}}}}}}}}}}}},"h":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0016163793103448276}}}}},"e":{"docs":{},"n":{"docs":{},"e":{"docs":{},"v":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0011689070718877848}}}}}},"o":{"docs":{},"l":{"docs":{},"e":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462}}}}}},"/":{"docs":{},"o":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0008766803039158387}}}},"o":{"docs":{},"n":{"docs":{},"'":{"docs":{},"t":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462}}}}},"r":{"docs":{},"d":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462}}},"k":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0014611338398597311},"docs/guides/advanced/ConfirmingNavigation.html":{"ref":"docs/guides/advanced/ConfirmingNavigation.html","tf":0.02926829268292683}}}}}},"j":{"docs":{},"a":{"docs":{},"v":{"docs":{},"a":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0016163793103448276},"docs/guides/advanced/DynamicRouting.html":{"ref":"docs/guides/advanced/DynamicRouting.html","tf":0.02564102564102564},"docs/guides/advanced/ServerRendering.html":{"ref":"docs/guides/advanced/ServerRendering.html","tf":0.007874015748031496},"docs/guides/basics/Histories.html":{"ref":"docs/guides/basics/Histories.html","tf":0.017587939698492462}}}}}}}}}}},"s":{"docs":{},"x":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.0021551724137931034},"docs/Introduction.html":{"ref":"docs/Introduction.html","tf":0.001597444089456869},"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0008766803039158387},"docs/guides/basics/RouteConfiguration.html":{"ref":"docs/guides/basics/RouteConfiguration.html","tf":0.004285714285714286}}}},"k":{"docs":{},"e":{"docs":{},"i":{"3":{"docs":{},"c":{"3":{"2":{"docs":{"docs/Introduction.html":{"ref":"docs/Introduction.html","tf":0.004792332268370607}}},"docs":{}},"docs":{}}},"docs":{}}}}},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{"docs/API.html":{"ref":"docs/API.html","tf":0.02209051724137931},"docs/Glossary.html":{"ref":"docs/Glossary.html","tf":0.042212518195050945},"docs/Introduction.html":{"ref":"docs/Introduction.html","tf":0.001597444089456869},"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.01782583284628872}}},"y":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"docs/Glossary.html":{"ref":"docs/Glossary.html","tf":0.01455604075691412},"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}}},"=":{"docs":{},"{":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},".":{"docs":{},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}}}}}}}}}}}}}}}}}}},"_":{"docs":{},"k":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}},"=":{"docs":{},"u":{"docs":{},"m":{"docs":{},"h":{"docs":{},"x":{"1":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0005844535359438924}}},"docs":{}}}}},"c":{"docs":{},"k":{"docs":{},"u":{"docs":{},"v":{"docs":{},"u":{"docs":{},"p":{"docs":{"docs/guides/basics/Histories.html":{"ref":"docs/guides/basics/Histories.html","tf":0.005025125628140704}}}}}}}}}}},"y":{"docs":{},"o":{"docs":{},"u":{"docs":{},"'":{"docs":{},"l":{"docs":{},"l":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462}}}},"r":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0008766803039158387}}}},"r":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{"docs/UPGRADE_GUIDE.html":{"ref":"docs/UPGRADE_GUIDE.html","tf":0.0002922267679719462}}}}}}}}}}},"length":1629},"corpusTokens":["0","0.1.x","0.10","0.10.x","0.11","0.11.x","0.12","0.12.0","0.12.x","0.13","0.13.0","0.13.2","0.13.3","0.13.x","0.2.x","0.3.x","0.4.x","0.5","0.5.x","0.6","0.6.x","0.7.x","0.8","0.8.0","0.8.x","0.9","0.9.0","0.9.x","1","1.0","1.0.0","10","123","1234","2","2.0","200","22","3","3.0","302","30x","345","4","404","456","5","500","6","789","8080","_k","_k=ckuvup","_k=umhx1","abil","about/123","about/:userid","absolut","access","account","accounts/123","accounts/:accountid","action","activ","activeclassnam","activeclassname=\"active\">about{user.name}{user.name}go","baz","be","becam","becom","befor","beforeunload","behavior","better","between","boilerpl","boolean(默认:fals","bootstrap","boss@big.co","branch","break","broken","brought","browser","browserhistori","browserhistory.push('/some/path","browserstack","bug","button","call","callback","callback(error","callback(nul","case","cb","cb(err","cb(null","chang","charact","child","childdepth","childnam","childname+id","children","children、params、loc","children,路由组件还会接收以下prop","childrout","churn","class","class=\"active\">michaelwelcom","div>{nam","div>{this.nam","div>{this.props.nam","document","document.bodi","document.getelementbyid('app","doesn't","dom","dom/serv","don't","dostuff","down","draft","dynam","e.preventdefault","e.stoppropag","effect","el","element","ember","ember'","embrac","ensur","enter","enterhook","entri","entrygo","foo.contexttyp","fooappusersinbox{this.state.user.name}aboutmessag","h3>message{routes}aboutinboxmichaelfoo{routes}usersgo","this.history.isactive(this.props.to","this.history.pushstate(nul","this.history.replacestate(nul","this.ignorelastfetch","this.isact","this.isactive(to","this.prop","this.props.activerout","this.props.activeroutehandl","this.props.children","this.props.foo}homehomeaboutinboxabouthome{user.name}mateuszmateusz