We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8f6f48c commit ea5e10cCopy full SHA for ea5e10c
1 file changed
packages/gui/src/view/pages/plugin/free-eye.vue
@@ -1,10 +1,11 @@
1
<script>
2
import lodash from 'lodash'
3
import Plugin from '../../mixins/plugin'
4
-
+import { ExperimentOutlined } from '@ant-design/icons-vue'
5
export default {
6
name: 'FreeEye',
7
mixins: [Plugin],
8
+ components: { ExperimentOutlined },
9
data () {
10
return {
11
key: 'plugin.free_eye',
@@ -132,7 +133,8 @@ export default {
132
133
/>
134
135
<div class="action-bar">
- <a-button type="primary" icon="experiment" :loading="running" @click="runTests">
136
+ <a-button type="primary" :loading="running" @click="runTests">
137
+ <ExperimentOutlined/>
138
运行检测
139
</a-button>
140
<span v-if="lastResult" class="last-run">最近完成:{{ formatTime(lastResult.finishedAt) }}</span>
0 commit comments