企业🤖AI Agent构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
有时候因为router的原因,有时候我们需要刷新组件,所以,实现了这个方法 ``` <router-view :key="key"></router-view> export default { computed: { //刷新组件 key () { return this.$route.name !== undefined? this.$route.name + new Date() : this.$route + new Date() } } } ```