forked from jae-jae/Userscript-Plus
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathInfo.vue
More file actions
32 lines (31 loc) · 999 Bytes
/
Copy pathInfo.vue
File metadata and controls
32 lines (31 loc) · 999 Bytes
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
<template>
<div>
<Row style="margin-bottom: 16px;">
<Col span="8">
<span class="expand-key">{{$t('table.version')}}:</span>
<span class="expand-value">{{ row.version }}</span>
</Col>
<Col span="8">
<span class="expand-key">{{$t('table.score')}}:</span>
<span class="expand-value">{{ row.fan_score }}</span>
</Col>
<Col span="8">
<span class="expand-key">{{$t('table.totalInstalls')}}:</span>
<span class="expand-value">{{ row.total_installs }}</span>
</Col>
</Row>
<Row>
<Col span="24">
<span class="expand-key">{{$t('table.description')}}:</span>
<span class="expand-value">{{ row.description }}</span>
</Col>
</Row>
</div>
</template>
<script>
export default {
props: {
row: Object
}
}
</script>