// 在你的页面组件中 export default { name: 'YourPage', mounted() { // 假设你有一个全局变量叫globalVueInstance globalVueInstance = this; } } // 在src\permission.ts中 let globalVueInstance = null; // 确保在你的页面组件设置实例之后再访问 if (globalVueInstance) { // 使用globalVueInstance来获取页面的Vue实例 const instance = globalVueInstance; // 执行你需要的操作 }