|
@@ -34,15 +34,15 @@
|
|
|
<span class="pos1" tabindex="0">Your Position: </span>
|
|
|
<Router-link replace to="/Layout/Home" tabindex="0" aria-description="Home">Home></Router-link>
|
|
|
<Router-link replace to="/Layout/Publications/1" tabindex="0" aria-description="Publications">Publications></Router-link>
|
|
|
- <span class="jump"
|
|
|
- @click="backUrl"
|
|
|
- @keydown.enter.passive="backUrl"
|
|
|
+ <Router-link
|
|
|
+ replace
|
|
|
+ to=""
|
|
|
tabindex="0"
|
|
|
- aria-label="Link"
|
|
|
:aria-description="$route.meta.nameAll"
|
|
|
+ @click.native.prevent="backUrl"
|
|
|
>
|
|
|
- {{ $route.meta.nameAll }}>
|
|
|
- </span>
|
|
|
+ {{$route.meta.nameAll}}
|
|
|
+ </Router-link>
|
|
|
</div>
|
|
|
<!-- 二级嵌套路由 -->
|
|
|
<Router-view />
|
|
@@ -189,9 +189,6 @@ export default {
|
|
|
.pos1 {
|
|
|
color: #c20e11;
|
|
|
}
|
|
|
- .jump {
|
|
|
- cursor: pointer;
|
|
|
- }
|
|
|
}
|
|
|
}
|
|
|
</style>
|