$router.push() & $http.get()
$router.push()
this.$router.push('about')
this.$router.push({path: 'productList', query: {id: id}})
$http.get()
const {data: res} = await this.$http.get('home')
const {data: res} = await this.$http.get( 'productDetails', { params: {id: this.id} } )

浙公网安备 33010602011771号