Files
mes-ui-d2/src/pages/demo/playground/page-argu/get.vue

17 lines
557 B
Vue
Raw Normal View History

<template>
<d2-container>
<h1 class="d2-mt-0">$route.params.username: {{$route.params.username}}</h1>
<h1>$route.query.userid: {{$route.query.userid}}</h1>
<p>你可以尝试返回发送数据页面修改数据重新发送或者切换到其它页面后刷新浏览器再返回本业观察参数保留</p>
<el-button type="primary" @click="$router.push({ name: 'demo-playground-page-argu-send' })">返回发送数据的页面</el-button>
</d2-container>
</template>
<script>
export default {
data () {
return {}
}
}
</script>