田源
2025-03-05 f6b61a485501f326debe52d77ea65d87fb34b37f
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
<template>
  <basic-container>
    <h3>标签</h3>
    <el-button type="primary"
               size="small"
               @click="$router.push('/test/index')">打开一个页面
    </el-button>
    <el-button type="primary"
               size="small"
               @click="$router.$avueRouter.closeTag('/test/index')">关闭打开的页面
    </el-button>
    <el-button type="primary"
               size="small"
               @click="$router.$avueRouter.closeTag()">关闭本标签
    </el-button>
 
  </basic-container>
</template>
 
<script>
  export default {
    methods: {}
  };
</script>
 
<style>
</style>