vue中ElementUI刷新页面代码
html按钮代码
<template> <div> <a href="javascript:;" title="刷新" class="refresh" @click="refresh()"><i class="el-icon-refresh-left"></i></a> </div> <template>
js部分代码:刷新页面主要用到this.$router.go(0)或window.location.reload()
<script> export default { methods: { // 刷新 refresh(){ this.$router.go(0) //或 window.location.reload() } } } </script>
文章评论(0)