|
@@ -149,7 +149,8 @@ export default {
|
|
|
handleMenuRouterFun(item) {
|
|
|
// 路径相同就刷新,否则就跳转
|
|
|
if (this.$route.path === item.path) {
|
|
|
- this.$emit('reload');
|
|
|
+ // 如果是相同页面就不做处理(新建文章页面 编辑框会出问题)
|
|
|
+ // this.$emit('reload');
|
|
|
} else {
|
|
|
this.$router.push({ path: item.path });
|
|
|
}
|