これは簡単かもしれませんが、ドキュメントを調べたところ、何も見つかりませんでした。 「github」リンクをgithub.comにリダイレクトしたい。ただし、リンクをたどるのではなく、 ' https://github.com 'をURLに追加するだけです。これがスニペットです:
<BreadcrumbItem to='https://github.com'>
<Icon type="social-github"></Icon>
</BreadcrumbItem>
(これはカスタムCSSにiViewを使用していますが、「to」はルーターリンクと同じように機能します)。
<a :href="'//' + websiteUrl" target="_blank">
{{ url }}
</a>
私はダニエルのリンクを読み、回避策を見つけました:
{
path: '/github',
beforeEnter() {location.href = 'http://github.com'}
}
次のいずれかを行うことができます。
<a href=...
window.location = http://
そこ。const github = { template: '<div>github</div>'}
const routes = [
{
path: '/github',
beforeEnter() {location.href = 'http://github.com'},
component: github
}
]
const router = new VueRouter({
routes
})
const app = new Vue({
router
}).$mount('#app')
<head>
<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
<script src="https://unpkg.com/vue/dist/vue.js"></script>
<script src="https://unpkg.com/vue-router/dist/vue-router.js"></script>
</head>
<body>
<div id="app">
<li><router-link to="/github">github.com</router-link></li>
<router-view></router-view>
</div>
</body>
次のように、リンクブロックをブレッドクラムアイテム内に配置するだけです。
<BreadcrumbItem>
<a href="https://github.com">
<Icon type="social-github"/>
</a>
</BreadcrumbItem>