pyt
2025-03-04 12a6374f0f13d06314ef9c8a9fa021ae07be0198
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<template>
    <div>
        <p>当前路径:{{ $route.path }}</p>
    </div>
</template>
 
<script>
export default {
    data() {
        return {
            activeIndex: '1',
            activeIndex2: '1'
        };
    },
    methods: {
        handleSelect(key, keyPath) {
            console.log(key, keyPath);
        }
    }
}
</script>
 
<style></style>