春风项目四线(合箱线、总装线)
yyt
2024-05-05 1a444b1dc206297ed3d7199c3c5fb557f580c9af
提交 | 用户 | 时间
fd2207 1 <template>
2   <div>
3     <svg-icon icon-class="github" @click="goto" />
4   </div>
5 </template>
6
7 <script>
8 export default {
9   name: 'JCGit',
10   data() {
11     return {
12       url: 'http://192.168.0.189:8442/r/Jcdm-Mes.git'
13     }
14   },
15   methods: {
16     goto() {
17       window.open(this.url)
18     }
19   }
20 }
21 </script>