yyt
6 天以前 0cceb649e1dc443c2a91d26d81eacb0867c96db3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<template>
  <div>
    <svg-icon icon-class="github" @click="goto" />
  </div>
</template>
 
<script>
export default {
  name: 'JCGit',
  data() {
    return {
      url: 'http://192.168.0.189:8442/r/Jcdm-Mes.git'
    }
  },
  methods: {
    goto() {
      window.open(this.url)
    }
  }
}
</script>