We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
现在顶部导航点击之后有点点缓慢,某种程度是因为点击之后 Angular Router 加载新的组件(包括 Lazy Import),但是由于网站已经使用了 SSG 来渲染了所有的导航页面,这就导致 Angular Router 重新加载的意义不大。
所以使用 <a> 标签直接跳转例如: <a href="/manual" />,但是这又导致重洗加载所有的库。
<a>
<a href="/manual" />
这里尝试使用 Turbolinks,来加载 <a>标签跳转的内容。
还有若干问题要解决,如:
demo 在分支 turbolink-poc,需要 build SSG 后启动看效果。
yarn build; yarn scully;
归根结底好像没什么用🤦
The text was updated successfully, but these errors were encountered:
TODO: use Quicklink, if it works.
Sorry, something went wrong.
LiuuY
No branches or pull requests
现在顶部导航点击之后有点点缓慢,某种程度是因为点击之后 Angular Router 加载新的组件(包括 Lazy Import),但是由于网站已经使用了 SSG 来渲染了所有的导航页面,这就导致 Angular Router 重新加载的意义不大。
所以使用
<a>
标签直接跳转例如:<a href="/manual" />
,但是这又导致重洗加载所有的库。这里尝试使用 Turbolinks,来加载
<a>
标签跳转的内容。还有若干问题要解决,如:
demo 在分支 turbolink-poc,需要 build SSG 后启动看效果。
归根结底好像没什么用🤦The text was updated successfully, but these errors were encountered: