Skip to content
  • This project
    • Loading...
  • Sign in

官美宏 / aiqiyi-program

Go to a project
Toggle navigation
Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • aiqiyi-program
  • src
  • components
  • Doc
  • index.vue
  • 官美宏's avatar
    初始化项目 · 2e9681bc
    2e9681bc
    官美宏 authored 2021-09-22 16:48:34 +0800
index.vue 239 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
<template>
  <div>
    <svg-icon icon-class="doc" @click="click" />
  </div>
</template>

<script>
export default {
  name: 'Doc',
  methods: {
    click() {
      window.open('https://el-admin.vip/guide/', '_blank')
    }
  }
}
</script>