no message

Former-commit-id: f2bb1eaf701a5086e70eb08e030f9fdf1079649c
Former-commit-id: f981ab6f7db3ef95b61f980ef5997143566652f5
Former-commit-id: 8c64bdb2af6d333dafefe7eed49838a9e5a8b4c2
This commit is contained in:
李杨
2018-02-14 00:14:00 +08:00
parent f4ed045977
commit aad3da7d7f
2 changed files with 7 additions and 1 deletions

View File

@@ -11,9 +11,13 @@
export default { export default {
props: { props: {
url: { url: {
type: String,
required: false,
default: 'https://github.com/FairyEver' default: 'https://github.com/FairyEver'
}, },
tooltipPlacement: { tooltipPlacement: {
type: String,
required: false,
default: 'top-end' default: 'top-end'
} }
} }

View File

@@ -1,7 +1,9 @@
<template> <template>
<div class="dd-clearfix"> <div class="dd-clearfix">
<span v-if="title" class="dd-fl">{{title}}</span> <span v-if="title" class="dd-fl">{{title}}</span>
<span v-if="url" class="dd-fr"><GithubLink :url="url"></GithubLink></span> <span class="dd-fr">
<GithubLink v-if="url" :url="url"></GithubLink>
</span>
</div> </div>
</template> </template>