mirror of
https://github.com/doocs/md.git
synced 2024-11-26 04:01:33 +08:00
34 lines
1.1 KiB
Vue
34 lines
1.1 KiB
Vue
<template>
|
||
<el-dialog title="关于" :visible="aboutDialogVisible" @close="$emit('close')" width="30%" center>
|
||
<div style="text-align: center;">
|
||
<h3>一款高度简洁的微信 Markdown 编辑器</h3>
|
||
</div>
|
||
<div style="text-align: center;margin-top:10px;">
|
||
<p>扫码关注我的公众号,原创技术文章第一时间推送!</p>
|
||
<img src="assets/images/qrcode-for-doocs.jpg" style="width: 40%; display: block; margin: 20px auto 10px;">
|
||
</div>
|
||
<span slot="footer" class="dialog-footer">
|
||
<el-button type="success" @click="onRedirect('https://github.com/doocs/md')" plain>GitHub 仓库</el-button>
|
||
<el-button type="success" @click="onRedirect('https://gitee.com/doocs/md')" plain>Gitee 仓库</el-button>
|
||
</span>
|
||
</el-dialog>
|
||
</template>
|
||
|
||
<script>
|
||
export default {
|
||
props: {
|
||
aboutDialogVisible: {
|
||
type: Boolean,
|
||
default: false
|
||
}
|
||
},
|
||
methods: {
|
||
onRedirect(url) {
|
||
window.open(url)
|
||
}
|
||
}
|
||
}
|
||
</script>
|
||
|
||
<style lang="less" scoped>
|
||
</style> |