Skip to content

Commit ea5e10c

Browse files
committed
fix: icon
1 parent 8f6f48c commit ea5e10c

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

packages/gui/src/view/pages/plugin/free-eye.vue

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
<script>
22
import lodash from 'lodash'
33
import Plugin from '../../mixins/plugin'
4-
4+
import { ExperimentOutlined } from '@ant-design/icons-vue'
55
export default {
66
name: 'FreeEye',
77
mixins: [Plugin],
8+
components: { ExperimentOutlined },
89
data () {
910
return {
1011
key: 'plugin.free_eye',
@@ -132,7 +133,8 @@ export default {
132133
/>
133134

134135
<div class="action-bar">
135-
<a-button type="primary" icon="experiment" :loading="running" @click="runTests">
136+
<a-button type="primary" :loading="running" @click="runTests">
137+
<ExperimentOutlined/>
136138
运行检测
137139
</a-button>
138140
<span v-if="lastResult" class="last-run">最近完成:{{ formatTime(lastResult.finishedAt) }}</span>

0 commit comments

Comments
 (0)