春风项目四线(合箱线、总装线)
jiang
2024-01-26 d19612bcf688417adee504c5ae5bacb1a4832f88
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>