This commit is contained in:
pushuo 2022-09-26 19:19:50 +08:00 committed by Edward Yang
parent cac7d30e0a
commit 458357dba5
1 changed files with 2 additions and 2 deletions

View File

@ -110,8 +110,8 @@
methods: {
loadData() {
window.history.pushState('', '', this.url);
$http.get(`marketing?page=${this.page}`).then((res) => {
this.marketing = res.data.marketing;
$http.get(this.url).then((res) => {
this.plugins = res.data.plugins;
})
},