Fix meta tags (#4918)
This commit is contained in:
parent
052f8b265d
commit
342e48ed77
24 changed files with 33 additions and 24 deletions
|
|
@ -1,5 +1,5 @@
|
|||
<template>
|
||||
<a class="mk-url" :href="url" :target="target">
|
||||
<a class="mk-url" :href="url" :rel="rel" :target="target">
|
||||
<span class="schema">{{ schema }}//</span>
|
||||
<span class="hostname">{{ hostname }}</span>
|
||||
<span class="port" v-if="port != ''">:{{ port }}</span>
|
||||
|
|
@ -15,7 +15,7 @@ import Vue from 'vue';
|
|||
import { toUnicode as decodePunycode } from 'punycode';
|
||||
|
||||
export default Vue.extend({
|
||||
props: ['url', 'target'],
|
||||
props: ['url', 'rel', 'target'],
|
||||
data() {
|
||||
return {
|
||||
schema: null,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue