js中startWith()方法用于检测字符串是否以指定的字符串开头 'hello world'.startsWith('hello') 在vue中可以使用此方法检查路由地址 import{useRoute}from'vue-router';constroute =useRoute();letpath= route.path; path.startWith('/login');