Former-commit-id: e7813238ffff55b887f8951ee45f342f4c626303 [formerly e7813238ffff55b887f8951ee45f342f4c626303 [formerly e7813238ffff55b887f8951ee45f342f4c626303 [formerly e7813238ffff55b887f8951ee45f342f4c626303 [formerly b55667d3d7441ec5b726e8b3750c9989ce6b37ad [formerly 16a5bcf9cbecccf3f42c6192284a37f1640a5dee]]]]] Former-commit-id: 8892f31e8d2cfc49a1d249edd17b976fcd777a1e Former-commit-id: 2842d0b65ae587bf55a943debec8f8e49e7cde50 Former-commit-id: 7764509dc507ca044e743df95a8846bc57706295 [formerly cf6157f7480ac2cc7008eb34f033b5d68303f9cd] Former-commit-id: 43f24b32fcd00f3b5c3c7296140abcfff081c6c6 Former-commit-id: e2324d5c741ce637f92e42a70b618cb8a0e94f35 Former-commit-id: f3845a24d98bc2a261aec86c3273ca139e5073ac Former-commit-id: fe6f2d71196a70c085957eccc43a99e81e2bf1b1 Former-commit-id: b95b3807da9f4b536da864469e888fc5231d0843
33 lines
612 B
Vue
33 lines
612 B
Vue
<template>
|
|
<el-button-group>
|
|
<el-button v-if="title" size="mini" @click="$open(link)">{{title}}</el-button>
|
|
<el-button size="mini" @click="$open(link)">
|
|
<d2-icon :name="icon"/>
|
|
{{link}}
|
|
</el-button>
|
|
</el-button-group>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'd2-demo-link-btn',
|
|
props: {
|
|
title: {
|
|
type: String,
|
|
required: false,
|
|
default: ''
|
|
},
|
|
icon: {
|
|
type: String,
|
|
required: false,
|
|
default: 'link'
|
|
},
|
|
link: {
|
|
type: String,
|
|
required: false,
|
|
default: 'https://github.com/FairyEver'
|
|
}
|
|
}
|
|
}
|
|
</script>
|