标签: vue.js vue-router
Vue是否有内置方法在URL之间传递查询参数?还是什么有效的方法?
在我们的组件中,我们使用computed:
computed
computed: { queryParams() { return this.$route.query } }
,然后在<template>中使用:
<template>
<router-link :to="{ name: 'xxx', query: queryParams }">