无人机管理后台前端(已迁走)
shuishen
2025-06-26 125b416b7895e59a674506d3c976c6c9cfa1d1fb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<template>
  <basic-container>
    <h3>标签</h3>
    <el-button type="primary" @click="$router.push('/test/index')">打开一个页面</el-button>
    <el-button type="primary" @click="$router.$avueRouter.closeTag('/test/index')"
      >关闭打开的页面
    </el-button>
    <el-button type="primary" @click="$router.$avueRouter.closeTag()">关闭本标签</el-button>
  </basic-container>
</template>
 
<script>
export default {
  methods: {},
};
</script>
 
<style></style>