Former-commit-id: 8a731ca8028435e0ee780e4fa4d322a33f7f8c43 Former-commit-id: 200c1aaeb74abe28b6192ae9ee705bb471c39c23 Former-commit-id: fd4adc33b65c76c8504e66c4ac6c29394b5ad558 Former-commit-id: 535ae899ab441c76fc0011ec52f4342b05e3e4bd
23 lines
409 B
Vue
23 lines
409 B
Vue
<template>
|
|
<el-button-group>
|
|
<el-button size="mini">依赖</el-button>
|
|
<el-button size="mini" @click="$open(link)">
|
|
<d2-icon name="link"/>
|
|
{{link}}
|
|
</el-button>
|
|
</el-button-group>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'd2-demo-link-btn',
|
|
props: {
|
|
link: {
|
|
type: String,
|
|
required: false,
|
|
default: 'https://github.com/FairyEver'
|
|
}
|
|
}
|
|
}
|
|
</script>
|