1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| <!--页面刷新功能组件 暂不开发 有需求了再开发-->
| <template>
| <div>
| <i class="el-icon-refresh-right" style="font-size: 20px;cursor: pointer;line-height:50px" />
| </div>
| </template>
|
| <script>
| export default {
| name: 'PageRefresh'
| }
| </script>
|
| <style scoped>
|
| </style>
|
|