导航栏新增加文档

This commit is contained in:
izory
2021-10-13 12:25:45 +08:00
parent ae218c0f59
commit c873511f4d
2 changed files with 27 additions and 1 deletions

View File

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