query
新建Profile.vue
<template>
<div>
<h2>this is profile</h2>
<h2>{{$route.query.name}}</h2>
<h2>{{$route.query.age}}</h2>
<h2>{{$route.query.height}}</h2>
</div>
</template>
<script>
export default {
name: "Profile"
}
</script>
<style scoped>
</style>
修改index.js
修改App.vue
<router-link :to="{path:'/profile',query:{name:'flower',age:18,height:1.70}}" replace>档案</router-link>
效果
作者:彼岸舞
时间:2021\06\28
内容关于:VUE
本文属于作者原创,未经允许,禁止转发