vuekecheng06/src/pages/index.vue
2021-07-06 16:44:22 +08:00

17 lines
367 B
Vue

<template>
<div>
这是首页
<!-- 不能用a标签 -->
<!-- <a href="/foo">到foo</a> -->
<!-- <router-link to="/foo">到foo</router-link> -->
<button>用js跳转</button>
<router-link :to="{path:'/foo',query:{name:123,age:234,asda:1411}}">到foo</router-link>
</div>
</template>
<script>
export default {
methods:{
}
}
</script>