1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
| <template>
| <el-card shadow="hover" header="版本信息">
| <div style="height: 210px;text-align: center;">
| <img src="img/ver.svg" style="height:140px"/>
| <h2 style="margin-top: 15px;">SCUI {{$CONFIG.CORE_VER}}</h2>
| <p style="margin-top: 5px;">最新版本 {{ver}}</p>
| </div>
| <div style="margin-top: 20px;">
| <el-button type="primary" plain round @click="golog">更新日志</el-button>
| <el-button type="primary" plain round @click="gogit">gitee</el-button>
| </div>
| </el-card>
| </template>
|
| <script>
| export default {
| title: "版本信息",
| icon: "el-icon-monitor",
| description: "当前项目版本信息",
| data() {
| return {
| ver: 'loading...'
| }
| },
| mounted() {
| this.getVer()
| },
| methods: {
| async getVer(){
| this.ver = "1.0.0"
| },
| golog(){
| window.open("https://gitee.com/lolicode/scui/releases")
| },
| gogit(){
| window.open("https://gitee.com/lolicode/scui")
| }
| }
| }
| </script>
|
|