20200619-zlp-2

首页-一日流程学习树
This commit is contained in:
paidaxing444
2020-06-19 18:25:00 +08:00
parent eb8ab45518
commit 72bf290a85
2 changed files with 23 additions and 2 deletions

View File

@ -0,0 +1,21 @@
<template>
<div>
<svg-icon icon-class="question" @click="goto"/>
</div>
</template>
<script>
export default {
name: 'BenYiDoc',
data() {
return {
url: 'https://www.baidu.com'
}
},
methods: {
goto() {
window.open(this.url)
}
}
}
</script>