vue 导航跳转created不执行,页面不刷新的解决办法
2020-08-20 本文已影响0人
cjlynn
修改created为activated
created() {
this.getList();
},
改为
activated() {
this.getList();
},
修改created为activated
created() {
this.getList();
},
改为
activated() {
this.getList();
},